From aac50f63fdacfb43be64279ab540f68cabe7351b Mon Sep 17 00:00:00 2001 From: cameron16 Date: Wed, 31 Mar 2021 23:27:33 -0400 Subject: [PATCH] Remove incorrect comment regarding default LocalCluster creation (#4660) Co-authored-by: cameron16 --- distributed/deploy/local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributed/deploy/local.py b/distributed/deploy/local.py index 7e2ed49b5f..e1f18734b0 100644 --- a/distributed/deploy/local.py +++ b/distributed/deploy/local.py @@ -78,7 +78,7 @@ class LocalCluster(SpecCluster): Examples -------- - >>> cluster = LocalCluster() # Create a local cluster with as many workers as cores # doctest: +SKIP + >>> cluster = LocalCluster() # Create a local cluster # doctest: +SKIP >>> cluster # doctest: +SKIP LocalCluster("127.0.0.1:8786", workers=8, threads=8)