Skip to content

Commit f92758b

Browse files
committed
Reformat with ruff.
1 parent a609776 commit f92758b

File tree

1 file changed

+4
-2
lines changed
  • instrumentation-genai/opentelemetry-instrumentation-google-genai/src/opentelemetry/instrumentation/google_genai

1 file changed

+4
-2
lines changed

instrumentation-genai/opentelemetry-instrumentation-google-genai/src/opentelemetry/instrumentation/google_genai/dict_util.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ def _flatten_compound_value_using_json(
121121
exclude_keys: Set[str],
122122
rename_keys: Dict[str, str],
123123
flatten_functions: Dict[str, FlattenFunc],
124-
_from_json=False) -> FlattenedDict:
124+
_from_json=False,
125+
) -> FlattenedDict:
125126
if _from_json:
126127
_logger.debug(
127128
"Cannot flatten value with key %s; value: %s", key, value
@@ -201,7 +202,8 @@ def _flatten_compound_value(
201202
exclude_keys=exclude_keys,
202203
rename_keys=rename_keys,
203204
flatten_functions=flatten_functions,
204-
_from_json=_from_json)
205+
_from_json=_from_json,
206+
)
205207

206208

207209
def _flatten_value(

0 commit comments

Comments
 (0)