We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d99b0c commit 803ad94Copy full SHA for 803ad94
src/textual/__init__.py
@@ -1,8 +1,8 @@
1
from __future__ import annotations
2
3
-import sys
4
import inspect
5
-from typing import Callable, TYPE_CHECKING
+import sys
+from typing import Callable
6
7
import rich.repr
8
from rich.console import RenderableType
@@ -13,9 +13,6 @@
13
from ._context import active_app
14
from ._log import LogGroup, LogVerbosity
15
16
-if TYPE_CHECKING:
17
- from .app import App
18
-
19
if sys.version_info >= (3, 10):
20
from typing import TypeAlias
21
else: # pragma: no cover
0 commit comments