Fix that.
This commit is contained in:
parent
92857b40d6
commit
1b6dd66d03
1 changed files with 3 additions and 2 deletions
|
@ -32,8 +32,9 @@ class MutexLock(AbstractFileLock):
|
||||||
def release_write_lock(self):
|
def release_write_lock(self):
|
||||||
return self.mutex.release_write_lock()
|
return self.mutex.release_write_lock()
|
||||||
|
|
||||||
def __json__(self):
|
@classmethod
|
||||||
return repr(self)
|
def __json__(cls):
|
||||||
|
return repr(cls)
|
||||||
|
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue