Update utils/save_to_hf.py
Browse files- utils/save_to_hf.py +1 -1
utils/save_to_hf.py
CHANGED
@@ -27,7 +27,7 @@ def commit_and_push_changes():
|
|
27 |
subprocess.run(["git", "remote", "set-url", "origin", REPO_URL], check=True)
|
28 |
subprocess.run(["git", "add", "--all"], check=True)
|
29 |
subprocess.run(["git", "commit", "-m", "Update questions data"], check=True)
|
30 |
-
subprocess.run(["git", "push"], check=True)
|
31 |
print("✅ Data committed and pushed successfully!")
|
32 |
|
33 |
except subprocess.CalledProcessError as e:
|
|
|
27 |
subprocess.run(["git", "remote", "set-url", "origin", REPO_URL], check=True)
|
28 |
subprocess.run(["git", "add", "--all"], check=True)
|
29 |
subprocess.run(["git", "commit", "-m", "Update questions data"], check=True)
|
30 |
+
subprocess.run(["git", "push", "origin", "main"], check=True)
|
31 |
print("✅ Data committed and pushed successfully!")
|
32 |
|
33 |
except subprocess.CalledProcessError as e:
|