summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorAAGaming <aagaming@riseup.net>2023-09-30 12:43:35 -0400
committermarios8543 <marios8543@gmail.com>2023-10-31 23:17:03 +0200
commitc69ca5e82159c910b6931fb4f0fe329be9564155 (patch)
treec7ab0bb62444a1e4def43ad5011044127c5d6570 /backend
parentb155734dcfb8c507def6c86c7faeee57333c98b1 (diff)
downloaddecky-loader-c69ca5e82159c910b6931fb4f0fe329be9564155.tar.gz
decky-loader-c69ca5e82159c910b6931fb4f0fe329be9564155.zip
fix broken import
Diffstat (limited to 'backend')
-rw-r--r--backend/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/main.py b/backend/main.py
index c2b99089..46a0671a 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()