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

Commit 998a9db

Browse files
authored
Merge pull request #34 from dbluhm/fix/conn-update
Allow extra keyword arguments in update
2 parents 7010883 + e4d1391 commit 998a9db

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

aries_staticagent/static_connection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ def update(
7474
endpoint: str = None,
7575
their_vk: Union[bytes, str] = None,
7676
recipients: [Union[bytes, str]] = None,
77-
routing_keys: [Union[bytes, str]] = None):
77+
routing_keys: [Union[bytes, str]] = None,
78+
**kwargs):
7879
"""Update their information."""
7980
if their_vk and recipients:
8081
raise ValueError('their_vk and recipients are mutually exclusive.')

0 commit comments

Comments
 (0)