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