Skip to content

Commit

Permalink
add class docstrings to expected file
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapriot committed Aug 16, 2024
1 parent 0d42e6d commit e85a685
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ __version__: str

class Point:
class AngleUnit:
"""Members:
radian
degree"""
__members__: ClassVar[dict] = ... # read-only
__entries: ClassVar[dict] = ...
degree: ClassVar[Point.AngleUnit] = ...
Expand All @@ -27,6 +32,13 @@ class Point:
def value(self) -> int: ...

class LengthUnit:
"""Members:
mm
pixel
inch"""
__members__: ClassVar[dict] = ... # read-only
__entries: ClassVar[dict] = ...
inch: ClassVar[Point.LengthUnit] = ...
Expand Down

0 comments on commit e85a685

Please sign in to comment.