From 717c8a97db21965f95299cc97cfd96a16960ed18 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 12:12:19 +0000 Subject: [PATCH] fix: don't use dicts as iterables in transform (#627) --- src/lithic/_utils/_transform.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lithic/_utils/_transform.py b/src/lithic/_utils/_transform.py index d7c05345..a6b62cad 100644 --- a/src/lithic/_utils/_transform.py +++ b/src/lithic/_utils/_transform.py @@ -316,6 +316,11 @@ async def _async_transform_recursive( # Iterable[T] or (is_iterable_type(stripped_type) and is_iterable(data) and not isinstance(data, str)) ): + # dicts are technically iterable, but it is an iterable on the keys of the dict and is not usually + # intended as an iterable, so we don't transform it. + if isinstance(data, dict): + return cast(object, data) + inner_type = extract_type_arg(stripped_type, 0) return [await _async_transform_recursive(d, annotation=annotation, inner_type=inner_type) for d in data]