type: ignore changes

This commit is contained in:
NormannK
2025-02-16 16:17:44 +01:00
parent 1d6b31ceb4
commit 12df87d392
3 changed files with 4 additions and 4 deletions

View File

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