Skip to content

Commit

Permalink
fix long line (PEP 8)
Browse files Browse the repository at this point in the history
  • Loading branch information
nchammas committed Sep 9, 2014
1 parent 126e4cf commit 7969265
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ec2/spark_ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,9 @@ def wait_for_cluster_state(cluster_instances, cluster_state, opts):
'running', 'terminated', etc.
(would be nice to replace this with a proper enum: http://stackoverflow.com/a/1695250)
"""
sys.stdout.write("Waiting for all instances in cluster to enter '{s}' state.".format(s=cluster_state))
sys.stdout.write(
"Waiting for all instances in cluster to enter '{s}' state.".format(s=cluster_state)
)
sys.stdout.flush()
while True:
for i in cluster_instances:
Expand Down

0 comments on commit 7969265

Please sign in to comment.