diff --git a/dau_utils/tests/test_all.py b/dau_utils/tests/test_all.py index 5c35220..bc121a7 100644 --- a/dau_utils/tests/test_all.py +++ b/dau_utils/tests/test_all.py @@ -1,4 +1,4 @@ -from dau_utils import * # noqa +from dau_utils import * def test_all(): diff --git a/dau_utils/tests/test_deadman.py b/dau_utils/tests/test_deadman.py index 7edccac..0dab4fc 100644 --- a/dau_utils/tests/test_deadman.py +++ b/dau_utils/tests/test_deadman.py @@ -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"):