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 c796162 commit 0b65642Copy full SHA for 0b65642
aws-opentelemetry-distro/src/amazon/opentelemetry/distro/otlp_sigv4_exporter.py
@@ -36,10 +36,11 @@ def __init__(
36
self._aws_region = None
37
38
if endpoint and is_otlp_endpoint_cloudwatch(endpoint):
39
- try:
40
- # Defensive check to verify that the application being auto instrumented has
41
- # botocore installed.
42
+ # Defensive check to verify that the application being auto instrumented has
+ # botocore installed.
+ try:
43
+ # pylint: disable=import-outside-toplevel
44
from botocore import auth, awsrequest, session
45
46
self.boto_auth = auth
0 commit comments