onekeyhf / app /utils.py
lazyfling's picture
Upload folder using huggingface_hub
6e83d49 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)