You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
462 B
33 lines
462 B
1 year ago
|
"""
|
||
|
This type stub file was generated by pyright.
|
||
|
"""
|
||
|
|
||
|
from enum import Enum
|
||
|
|
||
|
class _AutoStringNameEnum(Enum):
|
||
|
def __hash__(self) -> int:
|
||
|
...
|
||
|
|
||
|
|
||
|
|
||
|
class JoinStyle(str, _AutoStringNameEnum):
|
||
|
miter: str
|
||
|
round: str
|
||
|
bevel: str
|
||
|
@staticmethod
|
||
|
def demo() -> None:
|
||
|
...
|
||
|
|
||
|
|
||
|
|
||
|
class CapStyle(str, _AutoStringNameEnum):
|
||
|
butt: str
|
||
|
projecting: str
|
||
|
round: str
|
||
|
@staticmethod
|
||
|
def demo() -> None:
|
||
|
...
|
||
|
|
||
|
|
||
|
|