We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6303b3 commit a7d5651Copy full SHA for a7d5651
packages/service-library/src/servicelib/aiohttp/tracing.py
@@ -32,7 +32,9 @@
32
except ImportError:
33
HAS_BOTOCORE = False
34
try:
35
- from opentelemetry.instrumentation.aiopg import AiopgInstrumentor
+ from opentelemetry.instrumentation.aiopg import (
36
+ AiopgInstrumentor, # type: ignore[import-not-found]
37
+ )
38
39
HAS_AIOPG = True
40
packages/service-library/src/servicelib/fastapi/tracing.py
@@ -28,7 +28,9 @@
28
HAS_ASYNCPG = False
29
30
31
0 commit comments