Skip to content

Commit 803ad94

Browse files
committed
Remove unused import
1 parent 0d99b0c commit 803ad94

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/textual/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from __future__ import annotations
22

3-
import sys
43
import inspect
5-
from typing import Callable, TYPE_CHECKING
4+
import sys
5+
from typing import Callable
66

77
import rich.repr
88
from rich.console import RenderableType
@@ -13,9 +13,6 @@
1313
from ._context import active_app
1414
from ._log import LogGroup, LogVerbosity
1515

16-
if TYPE_CHECKING:
17-
from .app import App
18-
1916
if sys.version_info >= (3, 10):
2017
from typing import TypeAlias
2118
else: # pragma: no cover

0 commit comments

Comments
 (0)