We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f001dc9 commit d1b6479Copy full SHA for d1b6479
functional/transformations.py
@@ -57,7 +57,7 @@ def select_t(func: Callable):
57
:return: transformation
58
"""
59
return Transformation(
60
- "select({name(func)})",
+ f"select({name(func)})",
61
partial(map, func),
62
{ExecutionStrategies.PARALLEL},
63
)
@@ -70,7 +70,7 @@ def starmap_t(func: Callable):
70
71
72
73
- "starmap({name(func)})",
+ f"starmap({name(func)})",
74
partial(starmap, func),
75
76
0 commit comments