trackio-test-space-94481 / dummy_commit_scheduler.py
saba9's picture
saba9 HF Staff
Upload folder using huggingface_hub
cc0c5ee verified
# 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()