We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c909c53 commit aa44757Copy full SHA for aa44757
2 files changed
setup.py
@@ -17,7 +17,7 @@
17
# Versions should comply with PEP440. For a discussion on single-sourcing
18
# the version across setup.py and the project code, see
19
# https://packaging.python.org/en/latest/single_source_version.html
20
- version='1.1.1',
+ version='1.2.1',
21
22
description='SynapsePay Rest Native Python Library',
23
synapse_pay_rest/models/users/virtual_document.py
@@ -48,6 +48,7 @@ def submit_kba(self):
48
VirtualDocument: a new instance representing the updated document
49
"""
50
user = self.base_document.user
51
+ user.authenticate()
52
response = user.client.users.update(user.id, self.payload_for_kba())
53
user = user.from_response(user.client, response)
54
base_doc = [base_doc for base_doc in user.base_documents
0 commit comments