Skip to content

Commit bfb1726

Browse files
authored
Fix the missing return type (Azure#28581)
1 parent d9e20da commit bfb1726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/core/azure-core/azure/core/tracing/_abstract_span.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def set_current_span(cls, span: Any) -> None:
169169
"""
170170

171171
@classmethod
172-
def set_current_tracer(cls, tracer: Any):
172+
def set_current_tracer(cls, tracer: Any) -> None:
173173
"""
174174
Set the given tracer as the current tracer in the execution context.
175175
"""

0 commit comments

Comments
 (0)