Skip to content

Commit 13eaa82

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e56bff4 commit 13eaa82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sorts/gnome_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def gnome_sort[T: Comparable](lst: list[T]) -> list[T]:
4343
['a', 'b', 'c', 'd']
4444
>>> gnome_sort([2.5, -1.0, 0.0])
4545
[-1.0, 0.0, 2.5]
46-
"""
46+
"""
4747
if len(lst) <= 1:
4848
return lst
4949

0 commit comments

Comments
 (0)