Skip to content

Commit

Permalink
and update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jcapriot committed Aug 16, 2024
1 parent 18eb1ab commit 4b4d8ec
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ class Point:
class AngleUnit:
"""Members:
radian
radian
degree"""
degree"""
__members__: ClassVar[dict] = ... # read-only
__entries: ClassVar[dict] = ...
degree: ClassVar[Point.AngleUnit] = ...
Expand All @@ -34,11 +34,11 @@ class Point:
class LengthUnit:
"""Members:
mm
mm
pixel
pixel
inch"""
inch"""
__members__: ClassVar[dict] = ... # read-only
__entries: ClassVar[dict] = ...
inch: ClassVar[Point.LengthUnit] = ...
Expand Down

0 comments on commit 4b4d8ec

Please sign in to comment.