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 Oghenemarho Onothoja committed May 1, 2024
1 parent 6ed2e9a commit 1e26966
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 1e26966

Please sign in to comment.