I'm having some trouble getting importing stuff from another class, I think I may be doing it wrong.
I have a simple main class called Test and at the top I say:
from WordFixer import WordFixer
import sys
Then in the same folder (the src folder) I have a file called WordFixer.py and it's heading says:
class WordFixer:
but I'm getting an error in Test that says "Unresolved import: WordFixer"
What am I doing wrong?