Skip to content

Commit 28f9c04

Browse files
committed
fix(preprocessing/transformers): fix type annotation for Transformer.__ror__
1 parent 1f43fe3 commit 28f9c04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

boiling_learning/preprocessing/transformers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __str__(self) -> str:
3434
)
3535
return f'<{self.__class__.__name__} ({", ".join(arguments)})>'
3636

37-
def __ror__(self, arg: _X) -> _Y:
37+
def __ror__(self, arg: _X) -> _DescribedLazyTransform[_Y]:
3838
return _DescribedLazyTransform(arg, self)
3939

4040

0 commit comments

Comments
 (0)