Skip to content

Commit d9768c1

Browse files
authored
[hotfix] Fix master's linting (#5049)
The linting in CI on master always fail.
1 parent a115675 commit d9768c1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

python/ray/autoscaler/autoscaler.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,9 @@ def kill_workers(self):
670670
nodes = self.workers()
671671
if nodes:
672672
self.provider.terminate_nodes(nodes)
673-
logger.error("StandardAutoscaler: terminated {} node(s)".format(len(nodes)))
673+
logger.error(
674+
"StandardAutoscaler: terminated {} node(s)".format(
675+
len(nodes)))
674676
except Exception:
675677
traceback.print_exc()
676678

0 commit comments

Comments
 (0)