79821192

Date: 2025-11-15 23:17:18
Score: 0.5
Natty:
Report link

Remove the root_folder from all of the imports. Example:

from root_folder.package2.script2 import example_func

Becomes:

from package2.script2 import example_func

Also, run your app with

python main.py

instead of

python -m root_folder.main

This should solve your issue.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gleb