Skip to content

Commit 3738363

Browse files
committed
chore: format
1 parent b6a2c61 commit 3738363

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

airbyte_cdk/sources/utils/transform.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -244,11 +244,7 @@ def _get_type_structure(self, input_data: Any, current_depth: int = 0) -> Any:
244244

245245
# Avoid recursing too deep
246246
if current_depth >= MAX_NESTING_DEPTH:
247-
return (
248-
"object"
249-
if isinstance(input_data, dict)
250-
else python_to_json[type(input_data)]
251-
)
247+
return "object" if isinstance(input_data, dict) else python_to_json[type(input_data)]
252248

253249
if isinstance(input_data, dict):
254250
return {

0 commit comments

Comments
 (0)