Just don’t recreate the directory if it already exists
if os.path.exists('./repo'):
pass
else:
Repo.clone_from(st.secrets['GIT_URL'],'./repo')
Just don’t recreate the directory if it already exists
if os.path.exists('./repo'):
pass
else:
Repo.clone_from(st.secrets['GIT_URL'],'./repo')