Open paperplane110 opened 1 week ago
Fix #2994
When using readline and Prompt.ask(), then just pressing enter, prompt won't break line. Questions will all be printed in one line.
readline
Prompt.ask()
So, if readline is imported and user just enter nothing, use print() to break line.
print()
Type of changes
Checklist
Description
Fix #2994
When using
readline
andPrompt.ask()
, then just pressing enter, prompt won't break line. Questions will all be printed in one line.So, if
readline
is imported and user just enter nothing, useprint()
to break line.