CoolFace
Apppublic

yourComplete/quickstart-trackio

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
dummy_commit_scheduler.py13 linesDownload Raw Back to root
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