Skip to content

Commit 5c9731a

Browse files
committed
Fix missed unpack removal for get
1 parent a5e18ce commit 5c9731a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fastcs/backends/rest/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _get_response_body(attribute: AttrR[T]):
7676
# key=(type, ...) to declare a field without default value
7777
return create_model(
7878
f"Get{type_name}Value",
79-
**{"value": (attribute.datatype.dtype, ...)}, # type: ignore
79+
value=(attribute.datatype.dtype, ...),
8080
)
8181

8282

0 commit comments

Comments
 (0)