When using `Task.map` , is there a way to customiz...
# prefect-community
m
When using
Task.map
, is there a way to customize the repr of the child task besides seeing
Mapped Child n
where n is a number? For example
Task.map(x=list("abc"), ...)
, is there a way to see
Mapped Child a
instead?
k
Yeah see this page where you can define a pattern for the task run name. Also see this
m
Perfect this worked, thanks!
👍 1