Skip to content

Commit 36632e6

Browse files
nmohr192nicornk
authored andcommitted
allow importing Transform directly from transforms.api
1 parent 7721542 commit 36632e6

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

libs/transforms/src/transforms/api/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,20 @@
1515
transform_pandas,
1616
transform_polars,
1717
)
18-
from transforms.api._transform import TransformContext
18+
from transforms.api._transform import Transform, TransformContext
1919

2020
__all__ = (
2121
"Input",
2222
"Output",
2323
"Markings",
2424
"OrgMarkings",
25+
"configure",
26+
"incremental",
27+
"lightweight",
28+
"transform",
2529
"transform_df",
2630
"transform_pandas",
27-
"transform",
28-
"lightweight",
2931
"transform_polars",
32+
"Transform",
3033
"TransformContext",
31-
"incremental",
32-
"configure",
3334
)

0 commit comments

Comments
 (0)