Skip to content

Commit 85e6730

Browse files
authored
Test on 3.14 (#13473)
Tested on 3.14.
1 parent 9902c23 commit 85e6730

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎sorts/binary_insertion_sort.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def binary_insertion_sort(collection: list) -> list:
5656
returncollection
5757

5858

59-
if__name__=="__main":
59+
if__name__=="__main__":
6060
user_input=input("Enter numbers separated by a comma:\n").strip()
6161
try:
6262
unsorted= [int(item) foriteminuser_input.split(",")]

0 commit comments

Comments
(0)