79642606

Date: 2025-05-28 16:07:40
Score: 1
Natty:
Report link

Your user_functions.py lies in a different folder parallel to your main_script.py so you need to let python know to import from the parent (`..`) folder.

import sys
sys.path.append("..")
from user_functions import config_reader
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: jans-code