Skip to content

Commit f217cb2

Browse files
committed
linting fix
1 parent 9c080df commit f217cb2

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

aws-opentelemetry-distro/src/amazon/opentelemetry/distro/exporter/otlp/aws/common/otlp_aws_exporter.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111

1212
class OTLPBaseAwsExporter(ABC):
1313
"""
14-
Abstract base class providing shared functionality for AWS (OTLP) exporters authenticated with
15-
Sigv4.
14+
Abstract base class providing shared functionality for AWS (OTLP) exporters authenticated with
15+
Sigv4.
1616
"""
17+
1718
def __init__(
1819
self,
1920
endpoint: Optional[str] = None,

aws-opentelemetry-distro/src/amazon/opentelemetry/distro/exporter/otlp/aws/logs/otlp_aws_logs_exporter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class OTLPAwsLogExporter(OTLPLogExporter, OTLPBaseAwsExporter):
1818
1919
https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-OTLPEndpoint.html
2020
"""
21+
2122
def __init__(
2223
self,
2324
endpoint: Optional[str] = None,
@@ -44,7 +45,7 @@ def __init__(
4445

4546
def get_service(self):
4647
return "logs"
47-
48+
4849
# Overrides upstream's private implementation of _export. All behaviors are
4950
# the same except if the endpoint is an CloudWatch Logs OTLP endpoint, we will sign the request
5051
# with SigV4 in headers before sending it to the endpoint.

0 commit comments

Comments
 (0)