From 4b89fc1f9d7b8884d5cda6e9c1fae112025c2a80 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Sat, 30 Sep 2023 12:43:35 -0400 Subject: [PATCH] fix broken import --- backend/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/main.py b/backend/main.py index c2b990893..46a0671a9 100644 --- a/backend/main.py +++ b/backend/main.py @@ -1,4 +1,4 @@ -# This file is needed to make the relative imports in backend/ work properly. +# This file is needed to make the relative imports in src/ work properly. if __name__ == "__main__": - from backend.main import main + from src.main import main main()