Skip to content

Commit

Permalink
[hotfix] Fix master's linting (#5049)
Browse files Browse the repository at this point in the history
The linting in CI on master always fail.
  • Loading branch information
jovany-wang authored Jun 27, 2019
1 parent a115675 commit d9768c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/ray/autoscaler/autoscaler.py
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,9 @@ def kill_workers(self):
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()

Expand Down

0 comments on commit d9768c1

Please sign in to comment.