ai-observability / commit_fixes.py
Vishnu-VJ24
Deploy Final - Flawless SDK
f747401
raw
history blame contribute delete
271 Bytes
import subprocess
try:
subprocess.check_call(["git", "add", "."])
print("Add successful")
subprocess.check_call(
["git", "commit", "-m", "fix: flake8 linting errors"])
print("Commit successful")
except Exception as e:
print("Error:", str(e))