From d9768c1cd2b56fddc51d03e4ab55f262d2fc0fe9 Mon Sep 17 00:00:00 2001 From: Qing Wang Date: Thu, 27 Jun 2019 20:21:32 +0800 Subject: [PATCH] [hotfix] Fix master's linting (#5049) The linting in CI on master always fail. --- python/ray/autoscaler/autoscaler.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/ray/autoscaler/autoscaler.py b/python/ray/autoscaler/autoscaler.py index 4b3f7992e..c4209c93f 100644 --- a/python/ray/autoscaler/autoscaler.py +++ b/python/ray/autoscaler/autoscaler.py @@ -670,7 +670,9 @@ class StandardAutoscaler(object): nodes = self.workers() if nodes: self.provider.terminate_nodes(nodes) - logger.error("StandardAutoscaler: terminated {} node(s)".format(len(nodes))) + logger.error( + "StandardAutoscaler: terminated {} node(s)".format( + len(nodes))) except Exception: traceback.print_exc()