Formatting

This commit is contained in:
Nicolas Mowen 2024-10-12 11:30:35 -06:00
parent 2a144329bb
commit 723344bc0b

View File

@ -20,7 +20,7 @@ class FileLock:
self.lock_file = f"{path}.lock"
# we have not acquired the lock yet so it should not exist
if (os.path.exists(self.lock_file)):
if os.path.exists(self.lock_file):
try:
os.remove(self.lock_file)
except Exception: