fds
fds copied to clipboard
Path incorrect for `my_evaluation`
Running test.py
for project returns an error:
ModuleNotFoundError: No module named 'assignments.assignment8'
This is being caused because of this line:
from assignments.assignment8.my_evaluation import my_evaluation
This should be solved with:
from assignments.Evaluation.my_evaluation import my_evaluation
This is because of the project structure.
Yes. That was a mistake. I have updated the test.py file to correct the path. Please pull from this repo or make the correction yourself.