We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef45d62 commit e93aa9bCopy full SHA for e93aa9b
instrumentation/opentelemetry-instrumentation-asyncio/src/opentelemetry/instrumentation/asyncio/utils.py
@@ -27,7 +27,7 @@ def separate_coro_names_by_comma(coro_names: str) -> set:
27
"""
28
if coro_names is None:
29
return set()
30
- return set(coro_name.strip() for coro_name in coro_names.split(","))
+ return {coro_name.strip() for coro_name in coro_names.split(",")}
31
32
33
def get_coros_to_trace() -> set:
0 commit comments