Skip to content

Commit c7555de

Browse files
blarghmateyCopilot
andcommitted
Fix remaining CI failures: unused imports and uv.lock
- dbapi/__init__.py: remove unused bare 'import wrapt' (F401); the compat shim imports BaseObjectProxy directly from wrapt - grpc/_aio_server.py: remove unused 'import wrapt' (F401) and fix import ordering (I001) flagged by ruff pre-commit hook - uv.lock: regenerate after adding wrapt dependency to botocore pyproject.toml Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 76e54ce commit c7555de

File tree

3 files changed

+237
-237
lines changed
  • instrumentation
    • opentelemetry-instrumentation-dbapi/src/opentelemetry/instrumentation/dbapi
    • opentelemetry-instrumentation-grpc/src/opentelemetry/instrumentation/grpc

3 files changed

+237
-237
lines changed

instrumentation/opentelemetry-instrumentation-dbapi/src/opentelemetry/instrumentation/dbapi/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@
173173
import re
174174
from typing import Any, Awaitable, Callable, Generic, TypeVar
175175

176-
import wrapt
177176
from wrapt import wrap_function_wrapper
178177

179178
try:

instrumentation/opentelemetry-instrumentation-grpc/src/opentelemetry/instrumentation/grpc/_aio_server.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
import grpc
1616
import grpc.aio
17-
import wrapt
1817

1918
try:
2019
from wrapt import BaseObjectProxy

0 commit comments

Comments
 (0)