Web Developer
I am working with a custom python module to catch AppwriteExceptions and return them in a standard format within my company, I am using the following import statement:
from src.errors.error_codes import handle_errorand while the code works just fine when I run it localy, when I deploy it, it returns a Module Not Found error, my current file directory looks like this:
│ .gitignore
│ README.md
│ requirements.txt
│
└───src
│ main.py
│
└───errors
error_codes.py
__init__.py