Skip to content

Commit

Permalink
Del abstractmethod at end of typing module
Browse files Browse the repository at this point in the history
  • Loading branch information
aatle committed Aug 25, 2024
1 parent 923cadc commit 64267dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildconfig/stubs/pygame/typing.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ RectLike = Union[SequenceLike[float], SequenceLike[Coordinate], _HasRectAttribut


# cleanup namespace
del sys, IO, Callable, Tuple, Union, TypeVar, Protocol
del sys, abstractmethod, IO, Callable, Tuple, Union, TypeVar, Protocol
2 changes: 1 addition & 1 deletion src_py/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ def rect(self) -> Union["RectLike", Callable[[], "RectLike"]]:


# cleanup namespace
del sys, IO, Callable, Tuple, Union, TypeVar, Protocol
del sys, abstractmethod, IO, Callable, Tuple, Union, TypeVar, Protocol

0 comments on commit 64267dd

Please sign in to comment.