Skip to content

Commit d1b6479

Browse files
Oghenemarho OnothojaEntilZha
authored andcommitted
fix name of transformations
1 parent f001dc9 commit d1b6479

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

functional/transformations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def select_t(func: Callable):
5757
:return: transformation
5858
"""
5959
return Transformation(
60-
"select({name(func)})",
60+
f"select({name(func)})",
6161
partial(map, func),
6262
{ExecutionStrategies.PARALLEL},
6363
)
@@ -70,7 +70,7 @@ def starmap_t(func: Callable):
7070
:return: transformation
7171
"""
7272
return Transformation(
73-
"starmap({name(func)})",
73+
f"starmap({name(func)})",
7474
partial(starmap, func),
7575
{ExecutionStrategies.PARALLEL},
7676
)

0 commit comments

Comments
 (0)