Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 31, 2023
1 parent 2c31978 commit ff1407a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dask_awkward/lib/io/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def __call__(self, packed_arg):

def return_empty_on_raise(
fn: Callable[P, Array],
allowed_exceptions: tuple[Type[BaseException], ...],
allowed_exceptions: tuple[type[BaseException], ...],
) -> Callable[P, Array]:
@functools.wraps(fn)
def wrapped(*args, **kwargs):
Expand All @@ -487,7 +487,7 @@ def from_map(
token: str | None = None,
divisions: tuple[int, ...] | tuple[None, ...] | None = None,
meta: ak.Array | None = None,
empty_on_raise: tuple[Type[BaseException], ...] | None = None,
empty_on_raise: tuple[type[BaseException], ...] | None = None,
behavior: dict | None = None,
**kwargs: Any,
) -> Array:
Expand Down

0 comments on commit ff1407a

Please sign in to comment.