Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #34 from dbluhm/fix/conn-update
Browse files Browse the repository at this point in the history
Allow extra keyword arguments in update
  • Loading branch information
dbluhm authored Nov 25, 2019
2 parents 7010883 + e4d1391 commit 998a9db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aries_staticagent/static_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ def update(
endpoint: str = None,
their_vk: Union[bytes, str] = None,
recipients: [Union[bytes, str]] = None,
routing_keys: [Union[bytes, str]] = None):
routing_keys: [Union[bytes, str]] = None,
**kwargs):
"""Update their information."""
if their_vk and recipients:
raise ValueError('their_vk and recipients are mutually exclusive.')
Expand Down

0 comments on commit 998a9db

Please sign in to comment.