Switch to ignoring line

This commit is contained in:
Joe Knapper 2026-03-18 14:12:27 +00:00
parent 1f43d1cc53
commit 0618263830

View file

@ -227,7 +227,8 @@ class PreviewStitcher(BaseStitcher):
# Windows has no SIGKILL
self._popen_obj.kill()
else:
self._popen_obj.send_signal(signal.SIGKILL)
# ignore this line in mypy as mypy doesn't understand using the bool as a check
self._popen_obj.send_signal(signal.SIGKILL) # type: ignore[attr-defined]
raise (e)