Skip to content

Commit

Permalink
Input Type
Browse files Browse the repository at this point in the history
Changed the input type to an integer rather than a string to allow the if statements to work as intended.
  • Loading branch information
kjkoeller committed Oct 6, 2022
1 parent 20771ad commit 9824d5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Author: Kyle Koeller
Created: 8/29/2022
Last Updated: 9/29/2022
Last Updated: 10/06/2022
"""

import tess_data_search
Expand All @@ -21,7 +21,7 @@ def main():
print("")

while True:
prompt = input("Please type out the number corresponding to the corresponding action: ")
prompt = int(input("Please type out the number corresponding to the corresponding action: "))
if prompt == 1:
tess_data_search.main()
break
Expand Down

0 comments on commit 9824d5a

Please sign in to comment.