-
Notifications
You must be signed in to change notification settings - Fork 239
Closed
Description
It seems that the default
-key is ignored on list-type questions
Consider the following code:
from PyInquirer import prompt, print_json
answer = prompt({
'type': 'list',
'name': "test-question",
'message': "Select item",
'default': 2,
'choices': [
{ "name" : "Item 1",
"value" : "item1" },
{ "name" : "Item 2",
"value" : "item2" },
{ "name" : "Item 3",
"value" : "item3" },
{ "name" : "Item 4",
"value" : "item4" },
]
})
print_json(answer)
Expected result:
Item 3
is initially selected in the prompt
Actual result:
Item 1
is initially selected in the prompt
Environment:
OS: macOS 10.14 Mojave
$ python3 --version
Python 3.6.1
$ python3 -m pip show PyInquirer
Name: PyInquirer
Version: 1.0.2
Summary: A Python module for collection of common interactive command line user interfaces, based on Inquirer.js
Home-page: https://github.com/CITGuru/PyInquirer/
Author: Oyetoke Toby
Author-email: [email protected]
License: MIT
Location: /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages
Requires: prompt-toolkit, Pygments, regex
Required-by:
Metadata
Metadata
Assignees
Labels
No labels