Skip to content

Commit

Permalink
Remove unused type ignore comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Mar 18, 2024
1 parent 5b94780 commit c49f8c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentelemetry-api/src/opentelemetry/util/_decorator.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ def _agnosticcontextmanager(
) -> "Callable[P, _AgnosticContextManager[R]]":
@functools.wraps(func)
def helper(*args: Pargs, **kwargs: Pkwargs) -> _AgnosticContextManager[R]:
return _AgnosticContextManager(func, args, kwargs) # type: ignore
return _AgnosticContextManager(func, args, kwargs)

return helper

0 comments on commit c49f8c2

Please sign in to comment.