fix: Add missing 'import re' to agent_scan_routes.py

NameError: name 're' is not defined at line 146 — the import was
accidentally removed when extracting helper functions to agent_scan_helpers.py.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-05-04 22:59:53 +02:00
parent 4f92e5056c
commit 2f0f76e365
@@ -7,6 +7,7 @@ POST /api/compliance/agent/scan
import logging
import os
import re
from datetime import datetime, timezone
import httpx