Skip to content

Commit e26a317

Browse files
author
Shreya
committed
Fix ruff formatting issues
1 parent 559c01e commit e26a317

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

sorts/insertion_sort.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"""
1515

1616
from __future__ import annotations
17+
1718
from collections.abc import MutableSequence
1819
from typing import Any, Protocol, TypeVar
1920

sorts/pancake_sort.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"""
1010

1111
from __future__ import annotations
12+
1213
from collections.abc import MutableSequence
1314

1415

@@ -41,5 +42,4 @@ def pancake_sort(arr: MutableSequence[int]) -> MutableSequence[int]:
4142

4243
if __name__ == "__main__":
4344
import doctest
44-
4545
doctest.testmod()

0 commit comments

Comments
 (0)