Fixed PLR5501 (collapsible-else-if): Use `elif` instead of `else` then `if`, to reduce indentation

This commit is contained in:
Teal Dulcet 2023-12-23 05:51:45 -08:00 committed by Joshua Tauberer
parent 1d79f9bb2b
commit a32354fd91
1 changed files with 4 additions and 5 deletions

View File

@ -154,12 +154,11 @@ def check_service(i, service, env):
if not running and service["port"] in {80, 443}:
output.print_line(shell('check_output', ['nginx', '-t'], capture_stderr=True, trap=True)[1].strip())
# Service should be running locally.
elif try_connect("127.0.0.1"):
running = True
else:
# Service should be running locally.
if try_connect("127.0.0.1"):
running = True
else:
output.print_error("%s is not running (port %d)." % (service['name'], service['port']))
output.print_error("%s is not running (port %d)." % (service['name'], service['port']))
# Flag if local DNS is not running.
if not running and service["port"] == 53 and service["public"] is False: