Skip to content

Commit 1c68dec

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

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sorts/exchange_sort.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ def exchange_sort(data: list) -> list:
1818
data[i], data[j] = data[j], data[i]
1919
return data
2020

21-
if __name__ == '__main__':
21+
22+
if __name__ == "__main__":
2223
import doctest
24+
2325
doctest.testmod()

0 commit comments

Comments
 (0)