Remove unused import

This commit is contained in:
Darren Burns
2022-10-31 14:26:17 +00:00
parent 0d99b0ccd1
commit 803ad940fd

View File

@@ -1,8 +1,8 @@
from __future__ import annotations
import sys
import inspect
from typing import Callable, TYPE_CHECKING
import sys
from typing import Callable
import rich.repr
from rich.console import RenderableType
@@ -13,9 +13,6 @@ __all__ = ["log", "panic"]
from ._context import active_app
from ._log import LogGroup, LogVerbosity
if TYPE_CHECKING:
from .app import App
if sys.version_info >= (3, 10):
from typing import TypeAlias
else: # pragma: no cover