Skip to content

Commit

Permalink
Update instrumentation/opentelemetry-instrumentation-asyncio/src/open…
Browse files Browse the repository at this point in the history
…telemetry/instrumentation/asyncio/utils.py

Co-authored-by: Aaron Abbott <aaronabbott@google.com>
  • Loading branch information
bourbonkk and aabmass authored Jan 4, 2024
1 parent ef45d62 commit e93aa9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def separate_coro_names_by_comma(coro_names: str) -> set:
"""
if coro_names is None:
return set()
return set(coro_name.strip() for coro_name in coro_names.split(","))
return {coro_name.strip() for coro_name in coro_names.split(",")}


def get_coros_to_trace() -> set:
Expand Down

0 comments on commit e93aa9b

Please sign in to comment.