This problem has been driving me nuts. I am trying to import a class from a file in the same directory. PyCharm is giving me the \"Unresolved reference\" error. MyClas
MyClas
If you are using python version 3 try this
from .pack import myclass
This worked for me