Skip to content

Commit 3b004e3

Browse files
committed
Merge branch 'main' into support-multiple-bodies
2 parents 1ce3c79 + 64d8fa2 commit 3b004e3

File tree

5 files changed

+80
-80
lines changed

5 files changed

+80
-80
lines changed

end_to_end_tests/golden-record/my_test_api_client/models/a_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def _parse_not_required_one_of_models(data: object) -> Union["FreeFormModel", "M
375375
not_required_one_of_models = _parse_not_required_one_of_models(d.pop("not_required_one_of_models", UNSET))
376376

377377
def _parse_not_required_nullable_one_of_models(
378-
data: object
378+
data: object,
379379
) -> Union["FreeFormModel", "ModelWithUnionProperty", None, Unset, str]:
380380
if data is None:
381381
return data

end_to_end_tests/golden-record/my_test_api_client/models/model_with_any_json_properties.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
5353
for prop_name, prop_dict in d.items():
5454

5555
def _parse_additional_property(
56-
data: object
56+
data: object,
5757
) -> Union["ModelWithAnyJsonPropertiesAdditionalPropertyType0", List[str], bool, float, int, str]:
5858
try:
5959
if not isinstance(data, dict):

end_to_end_tests/golden-record/my_test_api_client/models/model_with_union_property_inlined.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def from_dict(cls: Type[T], src_dict: Dict[str, Any]) -> T:
5353
d = src_dict.copy()
5454

5555
def _parse_fruit(
56-
data: object
56+
data: object,
5757
) -> Union["ModelWithUnionPropertyInlinedFruitType0", "ModelWithUnionPropertyInlinedFruitType1", Unset]:
5858
if isinstance(data, Unset):
5959
return data

integration-tests/poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)