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-17 17:08:23 +0300
commit458fa6a66c74e44297443e211eca7ef6a3cb9b58 (patch)
tree5db600a5d89b83b0bdfac73d7023b0794cb9a6d8 /backend
parent06fccb792f33fbf728940fdcfb62db9017fb05c6 (diff)
downloaddecky-loader-458fa6a66c74e44297443e211eca7ef6a3cb9b58.tar.gz
decky-loader-458fa6a66c74e44297443e211eca7ef6a3cb9b58.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()