Skip to content

Commit

Permalink
Fix NGPVAN _people_search arbitrary fields feature
Browse files Browse the repository at this point in the history
kwargs were being passed to the wrong variable
  • Loading branch information
austinweisgrau committed Oct 10, 2024
1 parent 1642d6e commit 8a83ea8
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 8a83ea8

Please sign in to comment.