[dask] Improve documents. (#6687)
* Add tag for versions. * use autoclass in sphinx build. Made some class methods to be private to avoid exporting documents.
This commit is contained in:
@@ -1046,9 +1046,12 @@ class TestWithDask:
|
||||
|
||||
futures = []
|
||||
for i in range(len(workers)):
|
||||
futures.append(client.submit(worker_fn, workers[i],
|
||||
m.create_fn_args(workers[i]), pure=False,
|
||||
workers=[workers[i]]))
|
||||
futures.append(
|
||||
client.submit(
|
||||
worker_fn, workers[i],
|
||||
m._create_fn_args(workers[i]), pure=False,
|
||||
workers=[workers[i]])
|
||||
)
|
||||
client.gather(futures)
|
||||
|
||||
has_what = client.has_what()
|
||||
|
||||
Reference in New Issue
Block a user