diff options
Diffstat (limited to 'lib/python/qmk/questions.py')
| -rw-r--r-- | lib/python/qmk/questions.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/python/qmk/questions.py b/lib/python/qmk/questions.py index 27f43ac1e..865c6bbdc 100644 --- a/lib/python/qmk/questions.py +++ b/lib/python/qmk/questions.py | |||
| @@ -1,7 +1,12 @@ | |||
| 1 | """Functions to collect user input. | 1 | """Functions to collect user input. |
| 2 | """ | 2 | """ |
| 3 | 3 | ||
| 4 | from milc import cli, format_ansi | 4 | from milc import cli |
| 5 | |||
| 6 | try: | ||
| 7 | from milc import format_ansi | ||
| 8 | except ImportError: | ||
| 9 | from milc.ansi import format_ansi | ||
| 5 | 10 | ||
| 6 | 11 | ||
| 7 | def yesno(prompt, *args, default=None, **kwargs): | 12 | def yesno(prompt, *args, default=None, **kwargs): |
