Skip to content

Commit

Permalink
More mypy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Jan 10, 2024
1 parent bf0ba97 commit 2aafa90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flapi/cli/repl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 2aafa90

Please sign in to comment.