questionary
questionary copied to clipboard
When running in the CMD of the Windows platform, there will be a problem of repeated letters at the end of the checkbox options.
Question
import questionary
data = questionary.checkbox(
'Select toppings',
choices=[
"Cheese",
"Tomato",
"Pineapple",
]).ask()
print(data)
windows10,CMD
When I move up and down to make a selection, the last character of the previous option will be repeated.
It returned to normal after I selected it.
What have you already tried?
PowerShell is not normal, but windows11 powershell is normal, windows11 cmd is not normal
Read the documentation
- [x] I have checked to ensure that my question is not answered by the documentation.