Skip to content

Commit 55f3229

Browse files
committed
formatting issue
1 parent dab82e9 commit 55f3229

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

templates/python/package/services/service.py.twig

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,9 @@ Dict[str, Any]
147147
API response as one of the typed response models
148148
{% elseif validResponseModels|length == 1 %}{{ validResponseModels[0] | caseUcfirst }}
149149
API response as a typed Pydantic model
150-
{% elseif method.responseModel and method.responseModel != 'any' %}{% if isGenericResponse %}{{ method.responseModel | caseUcfirst }}[T]{% else %}{{ method | getResponseType(service.name) }}{% endif %}
151-
API response as a typed Pydantic model
150+
{% elseif method.responseModel and method.responseModel != 'any' %}{% if isGenericResponse %}{{ method.responseModel | caseUcfirst }}[T]
151+
{% else %}{{ method | getResponseType(service.name) }}
152+
{% endif %} API response as a typed Pydantic model
152153
{% else %}Dict[str, Any]
153154
API response as a dictionary
154155
{% endif %}

0 commit comments

Comments
 (0)