Skip to content

Commit 6634e0f

Browse files
🐛 Add missing module name.
1 parent 67157b0 commit 6634e0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lapidary/render/templates/render/includes/module/response.py.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import {{ imp }}
1111

1212
class {{item.body.name}}(ResponseEnvelope):
1313
{%- if item.body.body_type %}
14-
body: Annotated[{{th.type_hint(item.body.body_type)}}, ResponseBody()]
14+
body: typing.Annotated[{{th.type_hint(item.body.body_type)}}, ResponseBody()]
1515
{%- endif -%}
1616

1717
{%- for header in item.body.headers %}
18-
{{header.name}}: Annotated[{{ th.type_hint(header.type)}}, {{ header.annotation}}('{{header.alias}}')]
18+
{{header.name}}: typing.Annotated[{{ th.type_hint(header.type)}}, {{ header.annotation}}('{{header.alias}}')]
1919
{%- endfor -%}
2020
{{''}}

0 commit comments

Comments
 (0)