yourusername commited on
Commit
63a2f9a
·
1 Parent(s): 1e48515

:bug: f string!

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,7 +27,7 @@ def download_cache(cache_dir: str, repo_name: str):
27
 
28
  elapsed = 0
29
  while os.environ.get("GIT_LFS_PROGRESS"):
30
- st.write("been waiting {elapsed} seconds...")
31
  time.sleep(1)
32
  elapsed += 1
33
  # repo.git_pull() # Needed? What about if I'm running this locally + wanna update my local cache?
 
27
 
28
  elapsed = 0
29
  while os.environ.get("GIT_LFS_PROGRESS"):
30
+ st.write(f"been waiting {elapsed} seconds...")
31
  time.sleep(1)
32
  elapsed += 1
33
  # repo.git_pull() # Needed? What about if I'm running this locally + wanna update my local cache?