From d6dc4eaf6e7c2d06f9e44d2f0062f3555cf8c4c6 Mon Sep 17 00:00:00 2001 From: KmolYuan Date: Tue, 10 Sep 2019 15:34:13 +0800 Subject: [PATCH] Update stub files. --- cython/python_solvespace/slvs.pyi | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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: