File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed
src/prompt_toolkit/shortcuts Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change 83
83
from prompt_toolkit .key_binding .key_processor import KeyPressEvent
84
84
from prompt_toolkit .keys import Keys
85
85
from prompt_toolkit .layout import Float , FloatContainer , HSplit , Window
86
- from prompt_toolkit .layout .containers import (
87
- AnyContainer ,
88
- ConditionalContainer ,
89
- WindowAlign ,
90
- )
86
+ from prompt_toolkit .layout .containers import ConditionalContainer , WindowAlign
91
87
from prompt_toolkit .layout .controls import (
92
88
BufferControl ,
93
89
FormattedTextControl ,
@@ -646,11 +642,11 @@ def multi_column_complete_style() -> bool:
646
642
HSplit (
647
643
[
648
644
ConditionalContainer (
649
- Window (
650
- FormattedTextControl (get_prompt_text_1 ),
651
- dont_extend_height = True ,
652
- ),
653
- Condition (has_before_fragments ),
645
+ Window (
646
+ FormattedTextControl (get_prompt_text_1 ),
647
+ dont_extend_height = True ,
648
+ ),
649
+ Condition (has_before_fragments ),
654
650
),
655
651
ConditionalContainer (
656
652
default_buffer_window ,
You can’t perform that action at this time.
0 commit comments