From 6cb9ff92a42feb7eb6c0273c26e6e83faa89d8c7 Mon Sep 17 00:00:00 2001 From: KmolYuan Date: Wed, 29 Jan 2020 11:40:41 +0800 Subject: [PATCH] Typing patch. --- cython/python_solvespace/slvs.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cython/python_solvespace/slvs.pyi b/cython/python_solvespace/slvs.pyi index a00ea7c5..40a2b35a 100644 --- a/cython/python_solvespace/slvs.pyi +++ b/cython/python_solvespace/slvs.pyi @@ -45,8 +45,8 @@ class Params: class Entity: - FREE_IN_3D: ClassVar[Entity] - NONE: ClassVar[Entity] + FREE_IN_3D: ClassVar[Entity] = ... + NONE: ClassVar[Entity] = ... params: Params def is_3d(self) -> bool: