Skip to content

Commit e55071d

Browse files
committed
Add updates
1 parent 1096d61 commit e55071d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

examples/checkbox.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
from PyInquirer import style_from_dict, Token, prompt, Separator
1111

12-
from examples import default_style
12+
from examples import custom_style_2
1313

1414

1515
questions = [
@@ -67,5 +67,5 @@
6767
}
6868
]
6969

70-
answers = prompt(questions, style=default_style)
70+
answers = prompt(questions, style=custom_style_2)
7171
pprint(answers)

examples/editor.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
from __future__ import print_function, unicode_literals
66

77
from PyInquirer import style_from_dict, Token, prompt, print_json
8-
from PyInquirer import Validator, ValidationError, default_style
8+
from PyInquirer import Validator, ValidationError
9+
from examples import custom_style_2
910
from pprint import pprint
1011

1112

@@ -23,5 +24,5 @@
2324
}
2425
]
2526

26-
answers = prompt(questions, style=default_style)
27+
answers = prompt(questions, style=custom_style_2)
2728
pprint(answers)

0 commit comments

Comments
 (0)