File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
packages/service-library/src/servicelib Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2424
2525_logger = logging .getLogger (__name__ )
2626try :
27- from opentelemetry .instrumentation .botocore import (
28- BotocoreInstrumentor , # type: ignore
27+ from opentelemetry .instrumentation .botocore import ( # type: ignore[import-not-found]
28+ BotocoreInstrumentor ,
2929 )
3030
3131 HAS_BOTOCORE = True
Original file line number Diff line number Diff line change 1919_logger = logging .getLogger (__name__ )
2020
2121try :
22- from opentelemetry .instrumentation .asyncpg import (
23- AsyncPGInstrumentor , # type: ignore
22+ from opentelemetry .instrumentation .asyncpg import ( # type: ignore[import-not-found]
23+ AsyncPGInstrumentor ,
2424 )
2525
2626 HAS_ASYNCPG = True
4949 HAS_REDIS = False
5050
5151try :
52- from opentelemetry .instrumentation .botocore import (
53- BotocoreInstrumentor , # type: ignore
52+ from opentelemetry .instrumentation .botocore import ( # type: ignore[import-not-found]
53+ BotocoreInstrumentor ,
5454 )
5555
5656 HAS_BOTOCORE = True
You can’t perform that action at this time.
0 commit comments