[lfs] Workaround bug in FileLock >=3.15.3 (#656)

This commit is contained in:
kloon15 2024-08-23 15:12:31 +02:00 committed by GitHub
parent 9395eb94ab
commit 09d280f476
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -159,10 +159,10 @@ def get_dir_size(path):
class LockedJSONData(FileLock):
def __init__(self, file_path: str):
super().__init__(file_path + '.lock')
def __init__(self, lock_file: str):
super().__init__(lock_file + '.lock')
self._file_path = file_path
self._file_path = lock_file
self._data = None
self._initial_data = None