Skip to content

Commit d426939

Browse files
committed
fixed typo
1 parent fb818a3 commit d426939

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_filelock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def test_wrong_platform(tmp_path: Path) -> None:
501501
@pytest.mark.skipif(sys.platform == "win32", reason="Windows filesystems support flock")
502502
def test_flock_not_implemented_unix(tmp_path: Path) -> None:
503503
def dummy_flock(fd, operation):
504-
fd, operation = "" # added so the linter will be happy
504+
fd = operation = "" # added so the linter will be happy
505505
raise OSError(ENOSYS, "mock error")
506506

507507
lock_path = tmp_path / "a.lock"

0 commit comments

Comments
 (0)