Skip to content

Commit

Permalink
Fix merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MyreMylar authored Oct 5, 2024
1 parent 77c59b3 commit 7c5310f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildconfig/stubs/pygame/geometry.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ from typing import (
List,
)


from pygame import Rect, FRect
from pygame.typing import Point, RectLike, SequenceLike
from .rect import Rect, FRect
Expand All @@ -28,6 +27,8 @@ class _HasCirclettribute(Protocol):
# that returns a circle
circle: Union[_CanBeCircle, Callable[[], _CanBeCircle]]

_CircleValue = Union[_CanBeCircle, _HasCirclettribute]

class _HasLineAttribute(Protocol):
# An object that has a line attribute that is either a line, or a function
# that returns a line
Expand Down Expand Up @@ -149,7 +150,6 @@ class Circle:
def as_frect(self) -> FRect: ...
def copy(self) -> Circle: ...
def __copy__(self) -> Circle: ...
copy = __copy__

class Line:
@property
Expand Down

0 comments on commit 7c5310f

Please sign in to comment.