diff options
| author | AAGaming <aagaming@riseup.net> | 2023-09-30 12:43:35 -0400 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-31 23:17:03 +0200 |
| commit | c69ca5e82159c910b6931fb4f0fe329be9564155 (patch) | |
| tree | c7ab0bb62444a1e4def43ad5011044127c5d6570 | |
| parent | b155734dcfb8c507def6c86c7faeee57333c98b1 (diff) | |
| download | decky-loader-c69ca5e82159c910b6931fb4f0fe329be9564155.tar.gz decky-loader-c69ca5e82159c910b6931fb4f0fe329be9564155.zip | |
fix broken import
| -rw-r--r-- | backend/main.py | 4 |
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() |
