Skip to content

Commit

Permalink
fix name of transformations
Browse files Browse the repository at this point in the history
  • Loading branch information
Oghenemarho Onothoja authored and EntilZha committed Jun 20, 2024
1 parent f001dc9 commit 5a5b3f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functional/transformations.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def select_t(func: Callable):
:return: transformation
"""
return Transformation(
"select({name(func)})",
f"select({name(func)})",
partial(map, func),
{ExecutionStrategies.PARALLEL},
)
Expand All @@ -70,7 +70,7 @@ def starmap_t(func: Callable):
:return: transformation
"""
return Transformation(
"starmap({name(func)})",
f"starmap({name(func)})",
partial(starmap, func),
{ExecutionStrategies.PARALLEL},
)
Expand Down

0 comments on commit 5a5b3f9

Please sign in to comment.