I am using PyDev.
I am trying to organise my project classes into packages.
e.g. In a folder I have a module at /libraries/fund_price_library.py
In another file in my project, I try to import using:
from libraries.fund_price_library import FundPriceLibrary as fpl
PyDev underlines "FundPriceLibrary as fpl" in red, marking it with this error:
unresolved import fpl
However, my script works perfectly fine, so I believe that I am doing the import correctly.
I have lots of similar errors all over my project, and it looks messy. However, my python code works, so I assume I am importing correctly.
How do I suppress these errors?