Skip to content

Commit

Permalink
Add kwargs support to matrix params creation
Browse files Browse the repository at this point in the history
Support for additional keyword arguments added to matrix params creation by updating with kwargs.
  • Loading branch information
tobwen committed Nov 9, 2024
1 parent a86cee6 commit b5acaad
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions routingpy/routers/valhalla.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,8 @@ def get_matrix_params(
if id:
params["id"] = id

params.update(kwargs)

return params

@staticmethod
Expand Down

0 comments on commit b5acaad

Please sign in to comment.