questionary icon indicating copy to clipboard operation
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.

Open WuGUOJ opened this issue 9 months ago • 0 comments

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.

Image

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.

WuGUOJ avatar Mar 27 '25 15:03 WuGUOJ