fix: clear stale pyc on start; correct email label-based extraction

This commit is contained in:
Oliver Hofmann 2026-05-17 18:10:18 +02:00
parent 518aa74dc4
commit cb0c4a512f

View File

@ -9,4 +9,7 @@ if [ ! -d ".venv" ]; then
.venv/bin/playwright install chromium
fi
# Clear stale bytecode before each run to avoid executing outdated .pyc files
find src -name "*.pyc" -delete 2>/dev/null || true
PYTHONDONTWRITEBYTECODE=1 .venv/bin/python main.py "$@"