Skip to content

Commit 99138e9

Browse files
docs: Update docstring
1 parent 8d4c937 commit 99138e9

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
@@ -21,13 +21,13 @@ def chunk_split(dataset_length: int, number_of_chunks: int) -> List[Tuple[int, i
2121
2222
Parameters
2323
----------
24-
:param dataset: This should be the dataset you want to split into chunks
24+
:param dataset_length: This should be the length of the dataset you want to split into chunks
2525
:param number_of_chunks: The should be the number of chunks it will attempt to split into
2626
2727
2828
Returns
2929
-------
30-
:returns list[list[Any]]: The split dataset
30+
:returns list[tuple[int, int]]: The chunked dataset slices
3131
3232
Raises
3333
------

0 commit comments

Comments
 (0)