Spaces:
Running
Running
File size: 345 Bytes
b83f48f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# A dummy object to fit the interface of huggingface_hub's CommitScheduler
class DummyCommitSchedulerLock:
def __enter__(self):
return None
def __exit__(self, exception_type, exception_value, exception_traceback):
pass
class DummyCommitScheduler:
def __init__(self):
self.lock = DummyCommitSchedulerLock()
|