[attr-defined,unused-ignore] usage

This commit is contained in:
Normann
2025-02-16 22:58:00 +01:00
parent f1d8728da4
commit 027ba7c07f
3 changed files with 5 additions and 5 deletions

View File

@@ -240,9 +240,9 @@ class TestServerStartStop:
host = get_default_host()
if os.name == "nt":
# Windows does not provide SIGKILL
sigkill = signal.SIGTERM # type: ignore[attr-defined]
sigkill = signal.SIGTERM # type: ignore[attr-defined,unused-ignore]
else:
sigkill = signal.SIGKILL # type: ignore
sigkill = signal.SIGKILL # type: ignore[attr-defined,unused-ignore]
port = 8503
eosdash_port = 8504
timeout = 120