yourComplete/quickstart-trackio
0
1# A dummy object to fit the interface of huggingface_hub's CommitScheduler2class DummyCommitSchedulerLock:3 def __enter__(self):4 return None5 6 def __exit__(self, exception_type, exception_value, exception_traceback):7 pass8 9 10class DummyCommitScheduler:11 def __init__(self):12 self.lock = DummyCommitSchedulerLock()13 