Add blank line after input prompt in get_input function.

This commit is contained in:
Paul Gauthier 2023-05-09 14:19:43 -07:00
parent 659ce00c40
commit 351c8206ee

View file

@ -37,6 +37,7 @@ def get_input(history_file, fnames):
print(char, end="", flush=True)
time.sleep(random.uniform(0.05, 0.2))
print()
print()
return input_line
inp = ""
multiline_input = False