Skip to content

Commit

Permalink
isort fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
huard committed Feb 7, 2020
1 parent c191150 commit 5df6c9c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion xarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import numpy as np
import pandas as pd

from ..plot.plot import _PlotMethods
from . import (
computation,
dtypes,
Expand All @@ -34,6 +33,7 @@
rolling,
utils,
)
from ..plot.plot import _PlotMethods
from .accessor_dt import CombinedDatetimelikeAccessor
from .accessor_str import StringAccessor
from .alignment import (
Expand Down
4 changes: 2 additions & 2 deletions xarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@

import xarray as xr

from ..coding.cftimeindex import _parse_array_of_cftime_strings
from ..plot.dataset_plot import _Dataset_PlotMethods
from . import (
alignment,
dtypes,
Expand All @@ -47,6 +45,8 @@
rolling,
utils,
)
from ..coding.cftimeindex import _parse_array_of_cftime_strings
from ..plot.dataset_plot import _Dataset_PlotMethods
from .alignment import _broadcast_helper, _get_broadcast_dims_map_common_coords, align
from .common import (
DataWithCoords,
Expand Down
2 changes: 1 addition & 1 deletion xarray/tests/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from xarray.testing import assert_chunks_equal
from xarray.tests import mock

from ..core.duck_array_ops import lazy_array_equiv
from . import (
assert_allclose,
assert_array_equal,
Expand All @@ -26,6 +25,7 @@
raises_regex,
requires_scipy_or_netCDF4,
)
from ..core.duck_array_ops import lazy_array_equiv
from .test_backends import create_tmp_file

dask = pytest.importorskip("dask")
Expand Down
2 changes: 1 addition & 1 deletion xarray/tests/test_interp.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import xarray as xr
from xarray.tests import assert_allclose, assert_equal, requires_cftime, requires_scipy

from ..coding.cftimeindex import _parse_array_of_cftime_strings
from . import has_dask, has_scipy
from ..coding.cftimeindex import _parse_array_of_cftime_strings
from .test_dataset import create_test_data

try:
Expand Down

0 comments on commit 5df6c9c

Please sign in to comment.