3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-16 02:00:00 +00:00

run black and ruff on all skill scripts

This commit is contained in:
Angelica Moreira 2026-03-11 21:53:10 +00:00
parent 9d674404c8
commit 621638abb9
7 changed files with 103 additions and 60 deletions

View file

@ -42,10 +42,8 @@ def main():
model = parse_model(result["stdout"]) if result["result"] == "sat" else None
db.log_formula(run_id, formula, result["result"],
str(model) if model else None)
db.finish_run(run_id, result["result"], result["duration_ms"],
result["exit_code"])
db.log_formula(run_id, formula, result["result"], str(model) if model else None)
db.finish_run(run_id, result["result"], result["duration_ms"], result["exit_code"])
print(result["result"])
if model: