mirror of
https://github.com/derrod/legendary.git
synced 2025-08-04 15:01:02 +00:00
fix: add required arg name for FileLock >=3.15.3
This commit is contained in:
parent
7fefdc4973
commit
8009a8418f
|
@ -159,10 +159,10 @@ def get_dir_size(path):
|
||||||
|
|
||||||
|
|
||||||
class LockedJSONData(FileLock):
|
class LockedJSONData(FileLock):
|
||||||
def __init__(self, file_path: str):
|
def __init__(self, lock_file: str):
|
||||||
super().__init__(file_path + '.lock')
|
super().__init__(lock_file + '.lock')
|
||||||
|
|
||||||
self._file_path = file_path
|
self._file_path = lock_file
|
||||||
self._data = None
|
self._data = None
|
||||||
self._initial_data = None
|
self._initial_data = None
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue