Skip to content

Commit

Permalink
Fix filter_kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
Gouvernathor committed May 2, 2024
1 parent 1f1a78d commit b60fdf7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/parliamentarch/_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ def filter_kwargs[V](
for k in tuple(kwargs):
if k in s:
rvdict[k] = kwargs.pop(k)
if not kwargs:
break
rvdicts.append(rvdict)

rvdicts.append(kwargs)
return rvdicts

0 comments on commit b60fdf7

Please sign in to comment.