Skip to content

Commit f37a91b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent a61f0af commit f37a91b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: geometry/shapes/polygon/polygon.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class Polygon(ClosedShape, IntersectSelfShape):
88
"""
99
an abstract class which represents a
1010
set of polygons on a 2D surface
11-
11+
1212
>>> from geometry.angles.angle import Angle
1313
>>> polygon_one = Polygon()
1414
>>> side_length = 15

Diff for: geometry/shapes/shape_types/open_shapes.py

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
from geometry.shapes.shape import Shape
44

5+
56
class OpenShape(Shape, ABC):
67
"""
78
an interface which represents shapes or figures

0 commit comments

Comments
 (0)