sapcedeploy / app /utils.py
Leeflour's picture
Upload folder using huggingface_hub
b7bd3ec 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)