Update stub files.

pull/493/head
KmolYuan 2019-09-10 15:34:13 +08:00
parent 85e6277d2f
commit d6dc4eaf6e
1 changed files with 3 additions and 4 deletions

View File

@ -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: