Skip to content

Commit 35e62c8

Browse files
committed
Remove dictionary unpack
1 parent bd0f505 commit 35e62c8

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
@@ -50,7 +50,7 @@ def _put_request_body(attribute: AttrW[T]):
5050
# key=(type, ...) to declare a field without default value
5151
return create_model(
5252
f"Put{str(attribute.datatype.dtype)}Value",
53-
**{"value": (attribute.datatype.dtype, ...)}, # type: ignore
53+
value=(attribute.datatype.dtype, ...),
5454
)
5555

5656

0 commit comments

Comments
 (0)