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 14, 2024
1 parent be7fe3a commit ed2065e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/machinery/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ def _allocate_new_machine(self):
# 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 Config().get("resultserver").get("ip")
autoscale_options["resultserver_ip"]
if autoscale_options.get("resultserver_ip")
else Config().get("resultserver").get("ip")
)
if autoscale_options.get("resultserver_port"):
resultserver_port = autoscale_options["resultserver_port"]
Expand Down

0 comments on commit ed2065e

Please sign in to comment.