Skip to content

Commit 4ca9bb2

Browse files
committed
fix ci
1 parent 2902d37 commit 4ca9bb2

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

circle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def reduce_number_form(num: Union[int, float]) -> Union[int, float]:
117117
# c3 = Circle(Point2D(0, 0), Point2D(1, 1), Point2D(1, 0))
118118
# c4 = Circle(Point2D(0, 0), -1)
119119
# c5 = Circle(Point2D(1, 2), Point2D(5, 3), Point2D(-1, 2))
120-
#
120+
# #
121121
# print(c1)
122122
# print(c2)
123123
# print(c3)

line.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
from __future__ import annotations
2+
13
from abc import (
24
ABC,
35
abstractmethod

point.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
from __future__ import annotations
2+
3+
14
from abc import (
25
ABC,
36
abstractmethod

0 commit comments

Comments
 (0)