Skip to content

Commit 323d58f

Browse files
Don't include prompt_toolkit default style.
1 parent 3155fc1 commit 323d58f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ptpython/style.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import unicode_literals
22

3-
from prompt_toolkit.styles import Style, merge_styles, default_style
3+
from prompt_toolkit.styles import Style, merge_styles
44
from prompt_toolkit.styles.pygments import style_from_pygments
55
from prompt_toolkit.utils import is_windows, is_conemu_ansi, is_windows_vt100_supported
66
from pygments.styles import get_style_by_name, get_all_styles
@@ -37,7 +37,6 @@ def generate_style(python_style, ui_style):
3737
containing style rules.
3838
"""
3939
return merge_styles([
40-
default_style(),
4140
python_style,
4241
ui_style
4342
])

0 commit comments

Comments
 (0)