Skip to content

Commit 7969265

Browse files
committed
fix long line (PEP 8)
1 parent 126e4cf commit 7969265

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ec2/spark_ec2.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,9 @@ def wait_for_cluster_state(cluster_instances, cluster_state, opts):
649649
'running', 'terminated', etc.
650650
(would be nice to replace this with a proper enum: http://stackoverflow.com/a/1695250)
651651
"""
652-
sys.stdout.write("Waiting for all instances in cluster to enter '{s}' state.".format(s=cluster_state))
652+
sys.stdout.write(
653+
"Waiting for all instances in cluster to enter '{s}' state.".format(s=cluster_state)
654+
)
653655
sys.stdout.flush()
654656
while True:
655657
for i in cluster_instances:

0 commit comments

Comments
 (0)