Skip to content

Commit 32b512a

Browse files
style: Fix Ruff formatting for long assertion line
Co-Authored-By: AJ Steers <[email protected]>
1 parent 038b58f commit 32b512a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

unit_tests/sources/declarative/schema/test_inferred_schema_loader_integration.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,9 @@ def test_inferred_schema_loader_with_nested_objects():
301301
properties = schema["properties"]
302302
assert "address" in properties
303303
address_type = properties["address"]["type"]
304-
assert address_type == "object" or (isinstance(address_type, list) and "object" in address_type)
304+
assert address_type == "object" or (
305+
isinstance(address_type, list) and "object" in address_type
306+
)
305307
assert "properties" in properties["address"]
306308

307309
address_props = properties["address"]["properties"]

0 commit comments

Comments
 (0)