cspocketindia commited on
Commit
90273f4
1 Parent(s): 48ab7e5

update commit first

Browse files
Files changed (1) hide show
  1. gradio_app.py +2 -2
gradio_app.py CHANGED
@@ -60,9 +60,9 @@ def predict(sentence):
60
  def sync_logs():
61
  print(f"Repo Clean: {repo.is_repo_clean()}")
62
  if not repo.is_repo_clean():
63
- repo.git_pull(lfs=True)
64
  repo.git_add()
65
- repo.git_commit()
 
66
  result = repo.git_push()
67
  # result = repo.push_to_hub()
68
  print(result)
 
60
  def sync_logs():
61
  print(f"Repo Clean: {repo.is_repo_clean()}")
62
  if not repo.is_repo_clean():
 
63
  repo.git_add()
64
+ repo.git_commit()
65
+ repo.git_pull(lfs=True)
66
  result = repo.git_push()
67
  # result = repo.push_to_hub()
68
  print(result)