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 2, 2024
1 parent bd60551 commit 6ebaf29
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/xsdba/_adjustment.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from __future__ import annotations

from collections.abc import Sequence
from typing import Callable
from collections.abc import Callable

import numpy as np
import xarray as xr
Expand Down
3 changes: 2 additions & 1 deletion src/xsdba/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
import itertools
from collections.abc import Sequence
from inspect import _empty, signature
from typing import Any, Callable, NewType, TypeVar
from typing import Any, NewType, TypeVar
from collections.abc import Callable

import cftime
import dask.array as dsk
Expand Down
3 changes: 2 additions & 1 deletion src/xsdba/formatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
from collections.abc import Sequence
from fnmatch import fnmatch
from inspect import _empty, signature
from typing import Any, Callable
from typing import Any
from collections.abc import Callable

import xarray as xr
from boltons.funcutils import wraps
Expand Down
2 changes: 1 addition & 1 deletion src/xsdba/loess.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from __future__ import annotations

from typing import Callable
from collections.abc import Callable
from warnings import warn

import numba
Expand Down
2 changes: 1 addition & 1 deletion src/xsdba/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import annotations

from inspect import signature
from typing import Callable
from collections.abc import Callable

from boltons.funcutils import wraps

Expand Down
2 changes: 1 addition & 1 deletion src/xsdba/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import annotations

import itertools
from typing import Callable
from collections.abc import Callable
from warnings import warn

import bottleneck as bn
Expand Down
2 changes: 1 addition & 1 deletion src/xsdba/xclim_submodules/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import Callable
from collections.abc import Callable

import xarray as xr

Expand Down

0 comments on commit 6ebaf29

Please sign in to comment.