We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b95b6f commit c49f442Copy full SHA for c49f442
src/omnipy/data/model.py
@@ -300,8 +300,6 @@ def get_orig_model(cls) -> type[_RootT] | UndefinedType:
300
def set_orig_model(cls, orig_model: type[_RootT]) -> None:
301
cls.__fields__[ROOT_KEY].field_info.extra['orig_model'] = orig_model
302
303
- # TODO: Allow e.g. Model[str](Model[int](5)) == Model[str](Model[int](5).contents).
304
- # Should then work the same as dataset
305
def __init__( # noqa: C901
306
self,
307
value: Any | UndefinedType = Undefined,
0 commit comments