From 283005f2dcfc95b59e0e2704f0ee533c5b545647 Mon Sep 17 00:00:00 2001 From: M Bussonnier Date: Wed, 11 Dec 2024 13:27:21 +0100 Subject: [PATCH] and reorder import --- IPython/terminal/interactiveshell.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/IPython/terminal/interactiveshell.py b/IPython/terminal/interactiveshell.py index 4d3291f476d..684b434c201 100644 --- a/IPython/terminal/interactiveshell.py +++ b/IPython/terminal/interactiveshell.py @@ -12,20 +12,20 @@ from IPython.utils.terminal import toggle_set_term_title, set_term_title, restore_term_title from IPython.utils.process import abbrev_cwd from traitlets import ( + Any, Bool, - Unicode, Dict, + Enum, + Float, + Instance, Integer, List, - observe, - Instance, Type, - default, - Enum, + Unicode, Union, - Any, + default, + observe, validate, - Float, ) from prompt_toolkit.auto_suggest import AutoSuggestFromHistory