Skip to content

Commit aec0458

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c61c699 commit aec0458

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_filelock.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,8 @@ def dummy_flock(fd, operation):
508508
try:
509509
fcntl.flock = dummy_flock
510510
with pytest.raises(NotImplementedError):
511-
with FileLock(str(lock_path)): pass
511+
with FileLock(str(lock_path)):
512+
pass
512513

513514
finally:
514515
fcntl.flock = _fcntl_flock

0 commit comments

Comments
 (0)