Visual Studio Code – Fiddler-Auditor: No module named 'auditor' error, however this module is in my project folder
I try to access auditor folder from another folder like this from auditor.evaluation.expected_behavior import SimilarGeneration Project Hierarchy However, I get this error "No module named 'auditor'" I tried many ways like: from ..auditor.evaluation.expected_behavior import SimilarGeneration or from .auditor.evaluation.expected_behavior import SimilarGeneration…