I have a project with multiple packages, each containing its own src folder:
project/
src/
package1/
pyproject.toml
src/
logic/
somestuff.py
mymodel1.py
__init__.py
package2/
pyproject.toml
src/
logic/
somestuff.py
mymodel2.py
__init__.py
The problem is that even when I define each package1, package2 folders with 'sources root', I have the next error. It seems PyCharm thinks that the src folder is the src folder in the package2, and not in the package1. What should I do?
