From 2aafa900125263e1fe6b6eec2250fe87c6c5dec4 Mon Sep 17 00:00:00 2001 From: Miguel Guthridge Date: Thu, 11 Jan 2024 02:20:34 +1100 Subject: [PATCH] More mypy fixes --- flapi/cli/repl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flapi/cli/repl.py b/flapi/cli/repl.py index 5b20d38..d274f6b 100644 --- a/flapi/cli/repl.py +++ b/flapi/cli/repl.py @@ -15,9 +15,9 @@ from IPython import start_ipython from traitlets.config.loader import Config as IPythonConfig except ImportError: - IPython = None - start_ipython = None - IPythonConfig = None + IPython = None # type: ignore + start_ipython = None # type: ignore + IPythonConfig = None # type: ignore SHELL_SCOPE = {