Skip to content

Commit 0919273

Browse files
fix kwonlyargs
1 parent 9bb5665 commit 0919273

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataclass_rest/parse_func.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def create_query_params_type(
3131
) -> Type:
3232
fields = {}
3333
self_processed = False
34-
for x in spec.args:
34+
for x in spec.args + spec.kwonlyargs:
3535
if not self_processed:
3636
self_processed = True
3737
continue

0 commit comments

Comments
 (0)