Skip to content

Commit e1c2335

Browse files
committed
Type Circle.contains parameter as positional-only
1 parent ed821b6 commit e1c2335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildconfig/stubs/pygame/geometry.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ class Circle:
129129
def collidelist(self, colliders: Sequence[_CanBeCollided], /) -> int: ...
130130
def collidelistall(self, colliders: Sequence[_CanBeCollided], /) -> List[int]: ...
131131
def intersect(self, other: _CanBeIntersected, /) -> List[Tuple[float, float]]: ...
132-
def contains(self, shape: _CanBeCollided) -> bool: ...
132+
def contains(self, shape: _CanBeCollided, /) -> bool: ...
133133
@overload
134134
def update(self, circle: _CircleValue, /) -> None: ...
135135
@overload

0 commit comments

Comments
 (0)