Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
32
typings/matplotlib/_enums.pyi
Normal file
32
typings/matplotlib/_enums.pyi
Normal file
|
@ -0,0 +1,32 @@
|
|||
"""
|
||||
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:
|
||||
...
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue