Skip to content

Commit 2f6e52f

Browse files
committed
CI rerun
1 parent 3583dd7 commit 2f6e52f

28 files changed

Lines changed: 28 additions & 28 deletions

File tree

modules/openapi-generator/src/main/resources/python/model_anyof.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class {{classname}}(RootModel[Union[{{#anyOf}}{{.}}{{^-last}}, {{/-last}}{{/anyO
3535

3636
@classmethod
3737
def from_dict(cls, obj: Dict[str, Any]) -> Self:
38-
"""Returns the object represented by the Dict"""
38+
"""Returns the object represented by the python Dict"""
3939
return cls.model_validate(obj)
4040

4141
@classmethod

modules/openapi-generator/src/main/resources/python/model_oneof.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class {{classname}}(RootModel[Union[{{#oneOf}}{{{.}}}{{^-last}}, {{/-last}}{{/on
3535

3636
@classmethod
3737
def from_dict(cls, obj: Dict[str, Any]) -> Self:
38-
"""Returns the object represented by the Dict"""
38+
"""Returns the object represented by the python Dict"""
3939
return cls.model_validate(obj)
4040

4141
@classmethod

samples/openapi3/client/petstore/python-aiohttp/petstore_api/models/any_of_color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __getattr__(self, name):
4646

4747
@classmethod
4848
def from_dict(cls, obj: Dict[str, Any]) -> Self:
49-
"""Returns the object represented by the Dict"""
49+
"""Returns the object represented by the python Dict"""
5050
return cls.model_validate(obj)
5151

5252
@classmethod

samples/openapi3/client/petstore/python-aiohttp/petstore_api/models/any_of_pig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __getattr__(self, name):
4848

4949
@classmethod
5050
def from_dict(cls, obj: Dict[str, Any]) -> Self:
51-
"""Returns the object represented by the Dict"""
51+
"""Returns the object represented by the python Dict"""
5252
return cls.model_validate(obj)
5353

5454
@classmethod

samples/openapi3/client/petstore/python-aiohttp/petstore_api/models/color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __getattr__(self, name):
4646

4747
@classmethod
4848
def from_dict(cls, obj: Dict[str, Any]) -> Self:
49-
"""Returns the object represented by the Dict"""
49+
"""Returns the object represented by the python Dict"""
5050
return cls.model_validate(obj)
5151

5252
@classmethod

samples/openapi3/client/petstore/python-aiohttp/petstore_api/models/int_or_string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __getattr__(self, name):
4646

4747
@classmethod
4848
def from_dict(cls, obj: Dict[str, Any]) -> Self:
49-
"""Returns the object represented by the Dict"""
49+
"""Returns the object represented by the python Dict"""
5050
return cls.model_validate(obj)
5151

5252
@classmethod

samples/openapi3/client/petstore/python-aiohttp/petstore_api/models/pig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __getattr__(self, name):
4848

4949
@classmethod
5050
def from_dict(cls, obj: Dict[str, Any]) -> Self:
51-
"""Returns the object represented by the Dict"""
51+
"""Returns the object represented by the python Dict"""
5252
return cls.model_validate(obj)
5353

5454
@classmethod

samples/openapi3/client/petstore/python-aiohttp/petstore_api/models/task_activity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __getattr__(self, name):
4949

5050
@classmethod
5151
def from_dict(cls, obj: Dict[str, Any]) -> Self:
52-
"""Returns the object represented by the Dict"""
52+
"""Returns the object represented by the python Dict"""
5353
return cls.model_validate(obj)
5454

5555
@classmethod

samples/openapi3/client/petstore/python-httpx/petstore_api/models/any_of_color.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __getattr__(self, name):
4646

4747
@classmethod
4848
def from_dict(cls, obj: Dict[str, Any]) -> Self:
49-
"""Returns the object represented by the Dict"""
49+
"""Returns the object represented by the python Dict"""
5050
return cls.model_validate(obj)
5151

5252
@classmethod

samples/openapi3/client/petstore/python-httpx/petstore_api/models/any_of_pig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __getattr__(self, name):
4848

4949
@classmethod
5050
def from_dict(cls, obj: Dict[str, Any]) -> Self:
51-
"""Returns the object represented by the Dict"""
51+
"""Returns the object represented by the python Dict"""
5252
return cls.model_validate(obj)
5353

5454
@classmethod

0 commit comments

Comments
 (0)