Skip to content

Commit

Permalink
formatting of label
Browse files Browse the repository at this point in the history
  • Loading branch information
ntessore committed Aug 29, 2024
1 parent d2dee53 commit b7fcaee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion heracles/mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async def _map_field(
Coroutine to map an individual field.
"""

label = ", ".join(map(str, key))
label = "(" + ", ".join(map(str, key)) + ")"
with progress.task(label) as task:
result = await field(catalog, progress=task)

Expand Down

0 comments on commit b7fcaee

Please sign in to comment.