Hi,
I’m using PyCharm with .venv. I followed the Quickstart Guide and my folder structure looks like this:
When I open main.py
I see an error in the imports:
#!/usr/bin/env python
import sys
import warnings
from hr_crew.crew import HrCrew
Error: Cannot find reference 'crew' in 'imported module hr_crew'
I tried to change it to: from hr_crew.src.hr_crew.crew import HrCrew
but then I receive the following error: ModuleNotFoundError: No module named 'hr_crew.src'
What am I missing here?
Thanks for your support!
David