Skip to content

Commit

Permalink
style: Automatic code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 15, 2024
1 parent 57ba7f1 commit a9d80fd
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions modules/machinery/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,7 @@ def _allocate_new_machine(self):
# If configured, use specific network interface for this
# machine, else use the default value.
interface = autoscale_options["interface"] if autoscale_options.get("interface") else machinery_options.get("interface")
resultserver_ip = (
autoscale_options["resultserver_ip"]
if autoscale_options.get("resultserver_ip")
else cfg_resultserver_ip
)
resultserver_ip = autoscale_options["resultserver_ip"] if autoscale_options.get("resultserver_ip") else cfg_resultserver_ip
if autoscale_options.get("resultserver_port"):
resultserver_port = autoscale_options["resultserver_port"]
else:
Expand Down

0 comments on commit a9d80fd

Please sign in to comment.