Skip to content

Commit

Permalink
chore: run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Dec 4, 2023
1 parent 7d62858 commit dc9645f
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 17 deletions.
4 changes: 2 additions & 2 deletions src/awkward/_connect/numpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import collections
import functools
import inspect
from collections.abc import Iterable
from collections.abc import Iterable, Iterator, Mapping
from itertools import chain

import numpy
Expand All @@ -26,7 +26,7 @@
from awkward._nplikes import to_nplike
from awkward._parameters import parameters_intersect
from awkward._regularize import is_non_string_like_iterable
from awkward._typing import Any, Iterator, Mapping
from awkward._typing import Any
from awkward._util import Sentinel
from awkward.contents.numpyarray import NumpyArray

Expand Down
3 changes: 1 addition & 2 deletions src/awkward/forms/bitmaskedform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable
from collections.abc import Callable, Iterator

import awkward as ak
from awkward._meta.bitmaskedmeta import BitMaskedMeta
Expand All @@ -11,7 +11,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
3 changes: 1 addition & 2 deletions src/awkward/forms/bytemaskedform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable
from collections.abc import Callable, Iterator

import awkward as ak
from awkward._meta.bytemaskedmeta import ByteMaskedMeta
Expand All @@ -11,7 +11,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
3 changes: 1 addition & 2 deletions src/awkward/forms/indexedform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable
from collections.abc import Callable, Iterator

import awkward as ak
from awkward._meta.indexedmeta import IndexedMeta
Expand All @@ -12,7 +12,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
3 changes: 1 addition & 2 deletions src/awkward/forms/indexedoptionform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable
from collections.abc import Callable, Iterator

import awkward as ak
from awkward._meta.indexedoptionmeta import IndexedOptionMeta
Expand All @@ -12,7 +12,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
3 changes: 1 addition & 2 deletions src/awkward/forms/listform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable
from collections.abc import Callable, Iterator

import awkward as ak
from awkward._meta.listmeta import ListMeta
Expand All @@ -11,7 +11,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
1 change: 0 additions & 1 deletion src/awkward/forms/recordform.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
1 change: 0 additions & 1 deletion src/awkward/forms/regularform.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
3 changes: 1 addition & 2 deletions src/awkward/forms/unionform.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from collections.abc import Callable, Iterable
from collections.abc import Callable, Iterable, Iterator
from itertools import permutations

import awkward as ak
Expand All @@ -12,7 +12,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down
1 change: 0 additions & 1 deletion src/awkward/forms/unmaskedform.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
Any,
DType,
ImplementsReadOnlyProperty,
Iterator,
Self,
final,
)
Expand Down

0 comments on commit dc9645f

Please sign in to comment.