Skip to content

Commit

Permalink
Update kanshudo_search.py
Browse files Browse the repository at this point in the history
cleaned displayed directions
  • Loading branch information
torytyler authored Dec 10, 2024
1 parent 109de30 commit e6c6f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kanshudo_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def display_examples(examples):
if end_index >= len(examples):
break

print("\nPress any key to see more examples, Escape to quit, or Enter to search for new sentences.")
print("\nPress any key to see more examples, or Escape to return.")
char = read_char()

# Handle the key press
Expand Down Expand Up @@ -183,7 +183,7 @@ def main():
all_examples = get_kanshudo_examples(kanji)

if not all_examples:
print("No example sentences found. Press any key to search again or Enter to quit.")
print("No example sentences found. Press any key to quit.")
char = read_char()
if char == 'ENTER':
clear_screen()
Expand Down

0 comments on commit e6c6f8b

Please sign in to comment.