Update stub files.
parent
85e6277d2f
commit
d6dc4eaf6e
|
@ -1,6 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
from typing import Tuple, List, Sequence, Counter
|
from typing import Tuple, List, Sequence, Counter, ClassVar
|
||||||
from enum import IntEnum, auto
|
from enum import IntEnum, auto
|
||||||
|
|
||||||
|
|
||||||
|
@ -93,9 +93,8 @@ class Params:
|
||||||
|
|
||||||
class Entity:
|
class Entity:
|
||||||
|
|
||||||
FREE_IN_3D: Entity
|
FREE_IN_3D: ClassVar[Entity]
|
||||||
NONE: Entity
|
NONE: ClassVar[Entity]
|
||||||
|
|
||||||
params: Params
|
params: Params
|
||||||
|
|
||||||
def is_3d(self) -> bool:
|
def is_3d(self) -> bool:
|
||||||
|
|
Loading…
Reference in New Issue