Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e93aa9b

Browse files
bourbonkkaabmass
andauthoredJan 4, 2024
Update instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio/utils.py
Co-authored-by: Aaron Abbott <[email protected]>
1 parent ef45d62 commit e93aa9b

File tree

1 file changed

+1
-1
lines changed
  • instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio

1 file changed

+1
-1
lines changed
 

Diff for: ‎instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def separate_coro_names_by_comma(coro_names: str) -> set:
2727
"""
2828
if coro_names is None:
2929
return set()
30-
return set(coro_name.strip() for coro_name in coro_names.split(","))
30+
return {coro_name.strip() for coro_name in coro_names.split(",")}
3131

3232

3333
def get_coros_to_trace() -> set:

0 commit comments

Comments
 (0)
Please sign in to comment.