We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df322d commit df38415Copy full SHA for df38415
templates/python/package/services/service.py.twig
@@ -36,7 +36,8 @@ class {{ service.name | caseUcfirst }}(Service):
36
Parameters
37
----------
38
{% for parameter in method.parameters.all %}{{ parameter.name | escapeKeyword | caseSnake }} : {{ parameter | getPropertyType(method) | raw }}
39
- {{ parameter.description | replace({"\n": "\n "}) }}
+ {% autoescape false %}{{ parameter.description | replace({"\n": "\n "}) }}{% endautoescape %}
40
+
41
{% endfor %}{% if 'multipart/form-data' in method.consumes %}
42
on_progress : callable, optional
43
Optional callback for upload progress
0 commit comments