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
Yes, if you are using python 3 you should add something like this:
from .pack import MyClass
It will work