Skip to content

Commit 042a00a

Browse files
Fix format with ruff
1 parent 77e52ae commit 042a00a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/test_parser/test_properties/test_model_property.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ def test_allof_required_override(self, model_property_factory, string_property_f
558558
# required: [bar]
559559
bar_prop = string_property_factory(name="bar", required=False)
560560
baz_prop = string_property_factory(name="baz", required=False)
561-
561+
562562
data = oai.Schema.model_construct(
563563
allOf=[
564564
oai.Reference.model_construct(ref="#/FooBase"),
@@ -567,9 +567,7 @@ def test_allof_required_override(self, model_property_factory, string_property_f
567567
)
568568
schemas = Schemas(
569569
classes_by_reference={
570-
"/FooBase": model_property_factory(
571-
required_properties=[], optional_properties=[bar_prop, baz_prop]
572-
),
570+
"/FooBase": model_property_factory(required_properties=[], optional_properties=[bar_prop, baz_prop]),
573571
}
574572
)
575573

0 commit comments

Comments
 (0)