Skip to content

Commit e182ab1

Browse files
committed
Fix.
1 parent b4488ca commit e182ab1

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})")
472+
pytest.skip(f"could not run 'lsof' ({exc!r})") # ty: ignore[invalid-argument-type, too-many-positional-arguments]
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)