Skip to content

Commit d67d18a

Browse files
committed
fixed flake8 error, missed the # noqa
1 parent 549a58f commit d67d18a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

xarray/core/duck_array_ops.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
import pandas as pd
1414
from numpy import all as array_all # noqa
1515
from numpy import any as array_any # noqa
16-
from numpy import zeros_like # noqa; noqa
17-
from numpy import around, broadcast_to
16+
from numpy import zeros_like # noqa
17+
from numpy import around, broadcast_to # noqa
1818
from numpy import concatenate as _concatenate
19-
from numpy import einsum, isclose, isin, isnan, isnat, pad
19+
from numpy import einsum, isclose, isin, isnan, isnat, pad # noqa
2020
from numpy import stack as _stack
21-
from numpy import take, tensordot, transpose, unravel_index
21+
from numpy import take, tensordot, transpose, unravel_index # noqa
2222
from numpy import where as _where
2323

2424
from . import dask_array_compat, dask_array_ops, dtypes, npcompat, nputils

0 commit comments

Comments
 (0)