From 3d498223f5aa7a327601d515646be207ad70d39b Mon Sep 17 00:00:00 2001 From: KmolYuan Date: Sun, 12 Dec 2021 14:58:10 +0800 Subject: [PATCH] Add missing docstring. --- cython/python_solvespace/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cython/python_solvespace/__init__.py b/cython/python_solvespace/__init__.py index ec860837..6ded1338 100644 --- a/cython/python_solvespace/__init__.py +++ b/cython/python_solvespace/__init__.py @@ -35,6 +35,7 @@ __all__ = [ class Constraint(IntEnum): + """Symbol of the constraint types.""" # Expose macro of constraint types POINTS_COINCIDENT = 100000 PT_PT_DISTANCE = auto() @@ -73,6 +74,7 @@ class Constraint(IntEnum): class ResultFlag(IntEnum): + """Symbol of the result flags.""" # Expose macro of result flags OKAY = 0 INCONSISTENT = auto()