Skip to content

Commit aff1891

Browse files
committed
fix: fix tests not working in Python 3.13
1 parent 8845c1d commit aff1891

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

topgg/user.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def __repr__(self) -> str:
107107
def __len__(self) -> int:
108108
return len(self.__votes)
109109

110-
def __iter__(self) -> Iterator[Vote]:
110+
def __iter__(self) -> 'Iterator[Vote]':
111111
return iter(self.__votes)
112112

113113

0 commit comments

Comments
 (0)