Skip to content

Commit 4ab0b6b

Browse files
committed
docs: update chunks() method signature
1 parent 73208c5 commit 4ab0b6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

othello/apps/tournaments/utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import logging
2-
from typing import Iterator, List, TypeVar
2+
from typing import Iterator, List, Tuple, TypeVar
33

44
from .models import TournamentPlayer
55

66
T = TypeVar("T")
77
logger = logging.getLogger("othello")
88

99

10-
def chunks(v: List[T], n: int) -> Iterator[List[T]]:
10+
def chunks(v: List[T], n: int) -> Iterator[Tuple[T]]:
1111
for i in range(0, len(v), n):
12-
yield v[i: i + n]
12+
yield tuple(v[i: i + n])
1313

1414

1515
def get_updated_ranking(player: TournamentPlayer) -> float:

0 commit comments

Comments
 (0)