style: apply ruff-format to entire codebase

First-time run of ruff-format via pre-commit hook normalises quote
style, trailing commas, and whitespace across 188 Python files.
No logic changes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
James Smith
2026-07-05 14:48:11 +01:00
parent 82e64104fe
commit 96172ca593
189 changed files with 19883 additions and 19552 deletions
+3 -2
View File
@@ -18,8 +18,9 @@ import sys
# Check Python version early, before imports that use 3.9+ syntax
# Handle --version early before other imports
if '--version' in sys.argv or '-V' in sys.argv:
if "--version" in sys.argv or "-V" in sys.argv:
from config import VERSION
print(f"INTERCEPT v{VERSION}")
sys.exit(0)
@@ -33,5 +34,5 @@ if not site.ENABLE_USER_SITE:
from app import main
if __name__ == '__main__':
if __name__ == "__main__":
main()