Skip to content

Commit 3ccee6b

Browse files
committed
Remove obsolete ty ignore for pytest.skip
1 parent ee485e2 commit 3ccee6b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_capture.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ def lsof_check():
469469
UnicodeDecodeError,
470470
) as exc: # pragma: no cover
471471
# about UnicodeDecodeError, see note on pytester
472-
pytest.skip(f"could not run 'lsof' ({exc!r})") # ty: ignore[invalid-argument-type, too-many-positional-arguments]
472+
pytest.skip(f"could not run 'lsof' ({exc!r})")
473473
yield
474474
out2 = subprocess.check_output(("lsof", "-p", str(pid))).decode()
475475
len1 = len([x for x in out.split("\n") if "REG" in x])

0 commit comments

Comments
 (0)