Hello
I'm using Dagger v0.18.10 and I'm updating to version v0.18.12.
My code was working, now, no more. I get this error: StructureHandlerNotFoundError: Unsupported type: <class 'src.core.step_result.StepResult'>. Register a structure hook for it
This class is part of my codebase and here are the first lines of my src/core/step_result.py file:
from dagger import Container
class StepResult:
So, back to v0.18.10, it works, I can run my codebase. Upgrading to v0.18.11 or v0.18.12, it's broken.
Can you give me some guidance please?
Thanks.