We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Transformer.__ror__
1 parent 1f43fe3 commit 28f9c04Copy full SHA for 28f9c04
boiling_learning/preprocessing/transformers.py
@@ -34,7 +34,7 @@ def __str__(self) -> str:
34
)
35
return f'<{self.__class__.__name__} ({", ".join(arguments)})>'
36
37
- def __ror__(self, arg: _X) -> _Y:
+ def __ror__(self, arg: _X) -> _DescribedLazyTransform[_Y]:
38
return _DescribedLazyTransform(arg, self)
39
40
0 commit comments