From a5baefe1b45fdeb88845f50c4e0af6387cee68e8 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Fri, 24 Jul 2020 17:04:10 -0700 Subject: [PATCH] Rerun isort on all files Run black again to make sure they agree. --- dask_cuda/explicit_comms/comms.py | 6 +----- dask_cuda/tests/test_device_host_file.py | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/dask_cuda/explicit_comms/comms.py b/dask_cuda/explicit_comms/comms.py index 72cfbbc48..e8bb0c11b 100644 --- a/dask_cuda/explicit_comms/comms.py +++ b/dask_cuda/explicit_comms/comms.py @@ -5,11 +5,7 @@ import distributed.comm from distributed import default_client, get_worker -from distributed.comm.addressing import ( - parse_address, - parse_host_port, - unparse_address, -) +from distributed.comm.addressing import parse_address, parse_host_port, unparse_address from . import utils diff --git a/dask_cuda/tests/test_device_host_file.py b/dask_cuda/tests/test_device_host_file.py index 0d12f97e9..1ed2d8cd2 100644 --- a/dask_cuda/tests/test_device_host_file.py +++ b/dask_cuda/tests/test_device_host_file.py @@ -8,11 +8,7 @@ from dask import array as da from distributed.protocol import deserialize_bytes, serialize_bytelist -from dask_cuda.device_host_file import ( - DeviceHostFile, - device_to_host, - host_to_device, -) +from dask_cuda.device_host_file import DeviceHostFile, device_to_host, host_to_device cupy = pytest.importorskip("cupy")