Skip to content

Commit

Permalink
Fix NGPVAN _people_search arbitrary fields feature (#1150)
Browse files Browse the repository at this point in the history
kwargs were being passed to the wrong variable
  • Loading branch information
austinweisgrau authored Oct 15, 2024
1 parent 99decfa commit bfb63e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parsons/ngpvan/people.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def _people_search(
id = match_json["vanId"]

if kwargs:
match_json.update(kwargs)
json.update(kwargs)

url = "people/"

Expand Down

0 comments on commit bfb63e7

Please sign in to comment.