We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8ed933 commit d6313c7Copy full SHA for d6313c7
python_modules/libraries/dagster-components/dagster_components/component/component.py
@@ -29,6 +29,7 @@ def get_model_cls(cls) -> Optional[type[BaseModel]]:
29
if issubclass(cls, Resolvable):
30
return cls.model()
31
32
+ # handle existing overrides for backwards compatibility
33
cls_from_get_schema = cls.get_schema()
34
if cls_from_get_schema:
35
return cls_from_get_schema
0 commit comments