Skip to content

Commit f49761b

Browse files
style: apply formatting fixes to transform.py after hybrid RefResolver implementation
Co-Authored-By: AJ Steers <[email protected]>
1 parent 1f55214 commit f49761b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

airbyte_cdk/sources/utils/transform.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@ def resolve(subschema: dict[str, Any]) -> dict[str, Any]:
205205
return cast(dict[str, Any], resolved)
206206
except Exception:
207207
try:
208-
_, resolved = cast(RefResolver, validator_instance.resolver).resolve(subschema["$ref"])
208+
_, resolved = cast(RefResolver, validator_instance.resolver).resolve(
209+
subschema["$ref"]
210+
)
209211
return cast(dict[str, Any], resolved)
210212
except Exception:
211213
# If both fail, return original subschema

0 commit comments

Comments
 (0)