Skip to content

Commit 80e84c7

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7488851 commit 80e84c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

otlp_psqlpy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _construct_span(
7676
if hosts:
7777
span_attributes[SpanAttributes.SERVER_ADDRESS] = ", ".join(hosts)
7878
span_attributes[SpanAttributes.SERVER_PORT] = ", ".join(
79-
[str(port) for port in ports]
79+
[str(port) for port in ports],
8080
)
8181
span_attributes[SpanAttributes.NETWORK_TRANSPORT] = (
8282
NetTransportValues.IP_TCP.value
@@ -85,7 +85,7 @@ def _construct_span(
8585
elif host_addrs:
8686
span_attributes[SpanAttributes.SERVER_ADDRESS] = ", ".join(host_addrs)
8787
span_attributes[SpanAttributes.SERVER_PORT] = ", ".join(
88-
[str(port) for port in ports]
88+
[str(port) for port in ports],
8989
)
9090
span_attributes[SpanAttributes.NETWORK_TRANSPORT] = (
9191
NetTransportValues.IP_TCP.value

0 commit comments

Comments
 (0)