Skip to content

Commit f0a24e1

Browse files
committed
removed the error at line 19
1 parent 57c898a commit f0a24e1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sorts/tim_sort.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ def binary_search(lst: list[Any], item: Any, start: int, end: int) -> int:
1616
where to insert the item so the list stays sorted.
1717
1818
Args:
19-
lst: A list of comparable items (the sublist from ``start`` to ``end`` must already be sorted).
19+
lst: A list of comparable items.
20+
The sublist from ``start`` to ``end`` must already be sorted.
2021
item: The value to locate an insertion index for.
2122
start: Left-most index of the sorted sublist to search.
2223
end: Right-most index of the sorted sublist to search.

0 commit comments

Comments
 (0)