File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 88 - id : check-yaml
99 # isort should run before black as black sometimes tweaks the isort output
1010 - repo : https://github.com/PyCQA/isort
11- rev : 5.9.3
11+ rev : 5.10.0
1212 hooks :
1313 - id : isort
1414 # https://github.com/python/black#version-control-integration
1515 - repo : https://github.com/psf/black
16- rev : 21.9b0
16+ rev : 21.10b0
1717 hooks :
1818 - id : black
1919 - id : black-jupyter
Original file line number Diff line number Diff line change 22import pickle
33
44import pytest
5-
6- dask = pytest .importorskip ("dask" ) # isort:skip
7- distributed = pytest .importorskip ("distributed" ) # isort:skip
8-
95from dask .distributed import Client , Lock
10- from distributed .utils_test import cluster , gen_cluster
11- from distributed .utils_test import loop
126from distributed .client import futures_of
7+ from distributed .utils_test import cluster , gen_cluster , loop
138
149import xarray as xr
1510from xarray .backends .locks import HDF5_LOCK , CombinedLock
2520 assert_allclose ,
2621 has_h5netcdf ,
2722 has_netCDF4 ,
28- requires_rasterio ,
2923 has_scipy ,
30- requires_zarr ,
3124 requires_cfgrib ,
25+ requires_rasterio ,
26+ requires_zarr ,
3227)
3328
29+ dask = pytest .importorskip ("dask" ) # isort:skip
30+ distributed = pytest .importorskip ("distributed" ) # isort:skip
31+
32+
3433# this is to stop isort throwing errors. May have been easier to just use
3534# `isort:skip` in retrospect
3635
You can’t perform that action at this time.
0 commit comments