We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a2fe8 commit 4412b72Copy full SHA for 4412b72
airbyte_cdk/sources/declarative/schema/dynamic_schema_loader.py
@@ -271,9 +271,9 @@ def _get_airbyte_type(
271
272
if field_type == "array" and additional_types:
273
if (
274
- isinstance(additional_types[0], list)
275
- and len(additional_types[0]) == 2
276
- and all(isinstance(item, str) for item in additional_types[0])
+ isinstance(additional_types[0], list)
+ and len(additional_types[0]) == 2
+ and all(isinstance(item, str) for item in additional_types[0])
277
):
278
first_type = self._get_airbyte_type(additional_types[0][0])
279
second_type = self._get_airbyte_type(additional_types[0][1])
0 commit comments