Skip to content

Commit

Permalink
Tidy Q&A Prompts
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidPratten committed Jan 11, 2023
1 parent ce5cac3 commit a2598d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jetisu/idr_query.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def jetisu_ask_next_question(goal_list, tables, where_condition, residual_column
prompt = '\n'.join([f"{x}) {y[0]}" for (x, y) in enumerated_qlist])
response_valid = False
while not response_valid:
response = input(f"\n{chosen_q}?\n{prompt}")
response = input(f"\n{chosen_q}?\n{prompt}\n")
if response == '':
return None, None, None, ["Quit"]
try:
Expand Down

0 comments on commit a2598d8

Please sign in to comment.