Skip to content

Commit

Permalink
Linting comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Wout Feys committed Jul 30, 2024
1 parent 48e05f2 commit c586dbb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aikido_firewall/background_process/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ def __init__(self, address, key):
elif data[0] == "CLOSE": # this is a kind of EOL for python IPC
conn.close()
break
elif data[0] == "KILL": # when main process quits , or during testing etc
elif (

Check warning on line 53 in aikido_firewall/background_process/__init__.py

View check run for this annotation

Codecov / codecov/patch

aikido_firewall/background_process/__init__.py#L53

Added line #L53 was not covered by tests
data[0] == "KILL"
): # when main process quits , or during testing etc
logger.debug("Killing subprocess")
conn.close()
pid = os.getpid()
Expand Down

0 comments on commit c586dbb

Please sign in to comment.