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 a846bd8910
commit f960bd052a
@@ -7,6 +7,7 @@ POST /api/compliance/agent/scan
import logging import logging
import os import os
import re
from datetime import datetime, timezone from datetime import datetime, timezone
import httpx import httpx