Skip to content

Commit 217610e

Browse files
committed
code-climate: mypy: address remainig arg-type: address rebase (strictdoc-project#2391)
1 parent b2f1260 commit 217610e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

strictdoc/export/html/form_objects/grammar_element_form_object.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ def create_from_request(
221221
if element_is_composite == "false"
222222
else None
223223
),
224-
prefix=element_prefix,
225-
view_style=element_view_style,
224+
prefix=assert_cast(element_prefix, str),
225+
view_style=assert_cast(element_view_style, str),
226226
fields=form_object_fields,
227227
relations=form_object_relations,
228228
project_config=project_config,

0 commit comments

Comments
 (0)