Skip to content

Commit

Permalink
fix: typing import
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Dec 4, 2023
1 parent 663d6ae commit a052a55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/awkward/_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import sys
import typing
from typing import * # noqa: F403
from typing import TypeVar

import numpy

Expand Down Expand Up @@ -70,7 +71,7 @@
DType: TypeAlias = numpy.dtype


AxisMaybeNone = TypeVar("AxisMaybeNone", int, None) # noqa: F405
AxisMaybeNone = TypeVar("AxisMaybeNone", int, None)


T = TypeVar("T")
Expand Down

0 comments on commit a052a55

Please sign in to comment.