Skip to content

Commit

Permalink
Incorrect Return Type (#335)
Browse files Browse the repository at this point in the history
The type of the variable should be an integer and not a string.
kjkoeller authored Dec 6, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent e4ab679 commit 6a03334
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion EclipsingBinaries/Night_Filters.py
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ def check_num():
exit()
else:
print("You have not entered a number or the word 'Close', please try again.\n")
return num
return int(num)


def file_path(i):

0 comments on commit 6a03334

Please sign in to comment.