I encountered an import problem in hera/riskassessment/agents/effects/Calculator.py
from utils.unitHandler import unumToPint
which fails to import since utils is in the hera directory so should be
from hera.utils.unitHandler import unumToPint
go through entire codebase to check imports starts from correct place (hera/hera is not and should not be in PYTHONPATH)
I already fixed this occurrence with a quick patch but want to verify the rest of the code
I encountered an import problem in hera/riskassessment/agents/effects/Calculator.py
from utils.unitHandler import unumToPint
which fails to import since utils is in the hera directory so should be
from hera.utils.unitHandler import unumToPint
go through entire codebase to check imports starts from correct place (hera/hera is not and should not be in PYTHONPATH)
I already fixed this occurrence with a quick patch but want to verify the rest of the code