fix: keep pycln from removing load_ipython_extension

This commit is contained in:
Henry Schreiner 2022-03-25 11:36:22 -04:00
parent 1d4ebb2173
commit 09cab8be7e
No known key found for this signature in database
GPG Key ID: B9D0E45146A241E8
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
import os
from typing import Callable, IO, TYPE_CHECKING, Any, Optional, Union
from ._extension import load_ipython_extension
from ._extension import load_ipython_extension # noqa: F401
__all__ = ["get_console", "reconfigure", "print", "inspect"]

View File

@ -5,7 +5,7 @@ import platform
import sys
from dataclasses import dataclass, field
from traceback import walk_tb
from types import FrameType, ModuleType, TracebackType
from types import ModuleType, TracebackType
from typing import Any, Callable, Dict, Iterable, List, Optional, Sequence, Type, Union
from pygments.lexers import guess_lexer_for_filename