From e403fb42267ef1a6aae40182115f04fa391f38ff Mon Sep 17 00:00:00 2001 From: krassowski <5832902+krassowski@users.noreply.github.com> Date: Wed, 6 May 2026 22:41:09 +0100 Subject: [PATCH] Fix incorrect import --- IPython/core/history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/core/history.py b/IPython/core/history.py index 2abd7963fcf..8cad849476d 100644 --- a/IPython/core/history.py +++ b/IPython/core/history.py @@ -47,7 +47,7 @@ if TYPE_CHECKING: from IPython.core.interactiveshell import InteractiveShell - from IPython.config.Configuration import Configuration + from traitlets.config import Config as Configuration try: from sqlite3 import DatabaseError, OperationalError