Unresolved reference issue in PyCharm
I have a directory structure ├── simulate.py ├── src │ ├── networkAlgorithm.py │ ├── ... And I can access the network module with sys.path.insert(). import sys import os.path sys.path.in...