Linting and formatting

This commit is contained in:
Jonas Linter
2025-10-07 09:46:44 +02:00
parent b4b7a537e1
commit f0945ed431
21 changed files with 930 additions and 945 deletions

View File

@@ -1,6 +1,5 @@
#!/usr/bin/env python3
"""
Convenience launcher for the Wix Form Handler API
"""Convenience launcher for the Wix Form Handler API
"""
import os
@@ -11,4 +10,4 @@ src_dir = os.path.join(os.path.dirname(__file__), "src/alpine_bits_python")
# Run the API using uv
if __name__ == "__main__":
subprocess.run(["uv", "run", "python", os.path.join(src_dir, "run_api.py")])
subprocess.run(["uv", "run", "python", os.path.join(src_dir, "run_api.py")], check=False)