From 7c6aa4ccd74fcaa3ae4b0f5ad35051d584673f22 Mon Sep 17 00:00:00 2001 From: Oliver Hofmann Date: Sun, 17 May 2026 12:09:39 +0200 Subject: [PATCH] fix: disable pyc caching in start.sh to prevent stale bytecode --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index ac1af07..a1f5a70 100755 --- a/start.sh +++ b/start.sh @@ -9,4 +9,4 @@ if [ ! -d ".venv" ]; then .venv/bin/playwright install chromium fi -.venv/bin/python main.py "$@" +PYTHONDONTWRITEBYTECODE=1 .venv/bin/python main.py "$@"