ai-observability / commit.py
Vishnu-VJ24
Deploy Final - Flawless SDK
f747401
raw
history blame contribute delete
338 Bytes
import subprocess
try:
subprocess.check_call(
[
"git",
"commit",
"-m",
"feat(observability): Integrate core components"])
print("Commit successful")
subprocess.check_call(["git", "push"])
print("Push successful")
except Exception as e:
print("Error:", str(e))