gemma-2 / app /utils.py
ZSCGR's picture
Upload folder using huggingface_hub
30c9413 verified
raw
history blame contribute delete
112 Bytes
import os, stat
def _chmod_and_retry(func, path, exc):
os.chmod(path, stat.S_IWRITE)
func(path)