Skip to content

Commit 8821ec7

Browse files
committed
small correction
1 parent 41ecf29 commit 8821ec7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geometry.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class Line(Sequence[float]):
124124
def is_parallel(self, line: LineValue) -> bool: ...
125125
def is_perpendicular(self, line: LineValue) -> bool: ...
126126
def as_points(self, n_points: int) -> List[Tuple[float, float]]: ...
127-
def as_segments(self, n_segments: int) -> List[Tuple[Line]]: ...
127+
def as_segments(self, n_segments: int) -> List[Line]: ...
128128

129129
class Circle:
130130
x: float

0 commit comments

Comments
 (0)