Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
filelock fix
Browse files Browse the repository at this point in the history
  • Loading branch information
iopapamanoglou committed Nov 7, 2024
1 parent 2444426 commit ee31825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/faebryk/libs/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ def global_lock(lock_file_path: Path, timeout_s: float | None = None):
try:
yield
finally:
lock_file_path.unlink()
lock_file_path.unlink(missing_ok=True)


def typename(x: object | type) -> str:
Expand Down

0 comments on commit ee31825

Please sign in to comment.