Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dau_utils/tests/test_all.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from dau_utils import * # noqa
from dau_utils import *


def test_all():
Expand Down
2 changes: 1 addition & 1 deletion dau_utils/tests/test_deadman.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def __init__(self, active_states: dict[str, str]) -> None:
self.active_states = active_states
self.calls: list[tuple[str, ...]] = []

def __call__(self, command, check=False, capture_output=False, text=False): # noqa: ANN001
def __call__(self, command, check=False, capture_output=False, text=False):
command = tuple(command)
self.calls.append(command)
if command[:2] == ("systemctl", "is-active"):
Expand Down