anycallzhf's picture
Upload folder using huggingface_hub
b3249f6 verified
raw
history blame contribute delete
106 Bytes
import os, stat
def _chmod_and_retry(func, path, exc):
os.chmod(path, stat.S_IWRITE)
func(path)