Skip to content

Commit

Permalink
fix kwonlyargs
Browse files Browse the repository at this point in the history
  • Loading branch information
KurosawaAngel authored Oct 8, 2024
1 parent 9bb5665 commit 0919273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dataclass_rest/parse_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def create_query_params_type(
) -> Type:
fields = {}
self_processed = False
for x in spec.args:
for x in spec.args + spec.kwonlyargs:
if not self_processed:
self_processed = True
continue
Expand Down

0 comments on commit 0919273

Please sign in to comment.