Skip to content

Commit a61f0af

Browse files
committed
fixing ruff errors
1 parent 47591fb commit a61f0af

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from abc import ABC, abstractmethod
2-
from geometry.shapes.shape import Shape
32

3+
from geometry.shapes.shape import Shape
44

55
class OpenShape(Shape, ABC):
66
"""

0 commit comments

Comments
 (0)