Skip to content

Commit 565f5c9

Browse files
committed
precommit fixes
Signed-off-by: Alex Boten <[email protected]>
1 parent 98ec407 commit 565f5c9

File tree

2 files changed

+2
-2
lines changed
  • exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http

2 files changed

+2
-2
lines changed

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/metric_exporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
)
2929

3030
import requests
31-
from requests.exceptions import ConnectionError
3231
from deprecated import deprecated
32+
from requests.exceptions import ConnectionError
3333

3434
from opentelemetry.exporter.otlp.proto.common._internal import (
3535
_create_exp_backoff_generator,

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/trace_exporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def _export(self, serialized_data: bytes):
130130
data = gzip_data.getvalue()
131131
elif self._compression == Compression.Deflate:
132132
data = zlib.compress(serialized_data)
133-
133+
134134
# By default, keep-alive is enabled in Session's request
135135
# headers. Backends may choose to close the connection
136136
# while a post happens which causes an unhandled

0 commit comments

Comments
 (0)