Skip to content

Commit 3bf49fb

Browse files
committed
chore: type check
1 parent 2dd1834 commit 3bf49fb

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

core/utils.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
Optional,
1212
Coroutine,
1313
TypeVar,
14-
TYPE_CHECKING
1514
)
1615

1716
import anyio
@@ -25,10 +24,9 @@
2524
from .abc import CertificateType
2625
from .config import cfg
2726

28-
if TYPE_CHECKING:
29-
K = TypeVar("K")
30-
V = TypeVar("V")
31-
T = TypeVar("T")
27+
K = TypeVar("K")
28+
V = TypeVar("V")
29+
T = TypeVar("T")
3230

3331
class Runtime:
3432
def __init__(

0 commit comments

Comments
 (0)