Skip to content

Commit 03a2840

Browse files
committed
fix: typing import
1 parent c14a473 commit 03a2840

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/awkward/_typing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import sys
88
import typing
99
from typing import * # noqa: F403
10+
from typing import TypeVar
1011

1112
import numpy
1213

@@ -70,7 +71,7 @@
7071
DType: TypeAlias = numpy.dtype
7172

7273

73-
AxisMaybeNone = TypeVar("AxisMaybeNone", int, None) # noqa: F405
74+
AxisMaybeNone = TypeVar("AxisMaybeNone", int, None)
7475

7576

7677
T = TypeVar("T")

0 commit comments

Comments
 (0)