Skip to content

Commit

Permalink
isort max-length to 88 in order to match black
Browse files Browse the repository at this point in the history
  • Loading branch information
madsbk committed Dec 16, 2020
1 parent 4feb03c commit 78353fc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion dask_cuda/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from ._version import get_versions
from .local_cuda_cluster import LocalCUDACluster
from .cuda_worker import CUDAWorker
from .local_cuda_cluster import LocalCUDACluster

__version__ = get_versions()["version"]
del get_versions
6 changes: 1 addition & 5 deletions dask_cuda/explicit_comms/comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 1 addition & 5 deletions dask_cuda/tests/test_device_host_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@
)
from distributed.protocol.pickle import HIGHEST_PROTOCOL

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")

Expand Down
6 changes: 1 addition & 5 deletions dask_cuda/tests/test_explicit_comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
from distributed import Client
from distributed.deploy.local import LocalCluster

from dask_cuda.explicit_comms import (
CommsContext,
dataframe_merge,
dataframe_shuffle,
)
from dask_cuda.explicit_comms import CommsContext, dataframe_merge, dataframe_shuffle

mp = mp.get_context("spawn")
ucp = pytest.importorskip("ucp")
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ignore =
E231

[isort]
line_length=79
line_length=88
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
Expand Down

0 comments on commit 78353fc

Please sign in to comment.