Skip to content

Commit e63d602

Browse files
committed
fix formatting issues
1 parent ff8426d commit e63d602

File tree

1 file changed

+6
-2
lines changed
  • opentelemetry-instrumentation/src/opentelemetry/instrumentation

1 file changed

+6
-2
lines changed

opentelemetry-instrumentation/src/opentelemetry/instrumentation/_semconv.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,14 +297,18 @@ def _filter_semconv_active_request_count_attr(
297297

298298

299299
def set_string_attribute(
300-
result: MutableMapping[str, AttributeValue], key: str, value: AttributeValue
300+
result: MutableMapping[str, AttributeValue],
301+
key: str,
302+
value: AttributeValue,
301303
) -> None:
302304
if value:
303305
result[key] = value
304306

305307

306308
def set_int_attribute(
307-
result: MutableMapping[str, AttributeValue], key: str, value: AttributeValue
309+
result: MutableMapping[str, AttributeValue],
310+
key: str,
311+
value: AttributeValue,
308312
) -> None:
309313
if value:
310314
try:

0 commit comments

Comments
 (0)