We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d307601 commit ec5e56aCopy full SHA for ec5e56a
1 file changed
bindings/distrdf/python/DistRDF/Backends/Dask/Backend.py
@@ -111,10 +111,10 @@ def __init__(self, daskclient: Optional[Client] = None):
111
threads = worker.get("nthreads", 1)
112
113
if threads > 1:
114
- raise RuntimeError(
115
- "DistRDF with Dask does not support threaded workers. "
116
- "Please use processes=True and threads_per_worker=1."
117
- )
+ raise RuntimeError(
+ "DistRDF with Dask does not support threaded workers. "
+ "Please use processes=True and threads_per_worker=1."
+ )
118
119
def optimize_npartitions(self) -> int:
120
"""
0 commit comments