Skip to content

Commit 8d4c937

Browse files
refactor: Update signature
1 parent a86772e commit 8d4c937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/thread/utils/algorithm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
|_ b.py
99
"""
1010

11-
from typing import List, Sequence, Any
11+
from typing import List, Tuple
1212

1313

14-
def chunk_split(dataset: Sequence[Any], number_of_chunks: int) -> List[List[Any]]:
14+
def chunk_split(dataset_length: int, number_of_chunks: int) -> List[Tuple[int, int]]:
1515
"""
1616
Splits a dataset into balanced chunks
1717

0 commit comments

Comments
 (0)