Skip to content

Commit e65241d

Browse files
committed
apply black formatting
1 parent 1160adf commit e65241d

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

exporters/aws-otel-otlp-udp-exporter/src/amazon/opentelemetry/exporters/otlp/udp/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
UdpExporter,
44
OTLPUdpMetricExporter,
55
OTLPUdpSpanExporter,
6-
76
# Constants
87
DEFAULT_ENDPOINT,
98
FORMAT_OTEL_SAMPLED_TRACES_BINARY_PREFIX,
109
FORMAT_OTEL_UNSAMPLED_TRACES_BINARY_PREFIX,
1110
PROTOCOL_HEADER,
12-
FORMAT_OTEL_METRICS_BINARY_PREFIX
11+
FORMAT_OTEL_METRICS_BINARY_PREFIX,
1312
)
1413

1514
__all__ = [
@@ -20,5 +19,5 @@
2019
"FORMAT_OTEL_SAMPLED_TRACES_BINARY_PREFIX",
2120
"FORMAT_OTEL_UNSAMPLED_TRACES_BINARY_PREFIX",
2221
"PROTOCOL_HEADER",
23-
"FORMAT_OTEL_METRICS_BINARY_PREFIX"
22+
"FORMAT_OTEL_METRICS_BINARY_PREFIX",
2423
]

exporters/aws-otel-otlp-udp-exporter/src/amazon/opentelemetry/exporters/otlp/udp/exporter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,3 @@ def force_flush(self, timeout_millis: int = 30000) -> bool:
134134
@override
135135
def shutdown(self) -> None:
136136
self._udp_exporter.shutdown()
137-

exporters/aws-otel-otlp-udp-exporter/tests/test_exporter.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,4 +144,3 @@ def test_shutdown(self, mock_udp_exporter):
144144
exporter.shutdown()
145145
exporter.force_flush()
146146
mock_udp_exporter_instance.shutdown.assert_called_once()
147-

0 commit comments

Comments
 (0)