diff --git a/cython/python_solvespace/slvs.pyi b/cython/python_solvespace/slvs.pyi index 7a40a01c..ef6208bd 100644 --- a/cython/python_solvespace/slvs.pyi +++ b/cython/python_solvespace/slvs.pyi @@ -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: