Skip to content

Commit ea94564

Browse files
committed
SDK-1098: Change client to create ActivityDetails with named parameters and update .gitignore
1 parent 216de91 commit ea94564

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ htmlcov/
4141
.coverage.*
4242
.cache
4343
nosetests.xml
44-
coverage.xml
44+
coverage.*
4545
*,cover
4646
.hypothesis/
4747

@@ -102,3 +102,5 @@ examples/yoti_example_flask/static/YotiSelfie.jpg
102102
#.pem files for examples
103103
examples/yoti_example_django/*.pem
104104
examples/yoti_example_flask/*.pem
105+
106+
.scannerwork

yoti_python_sdk/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def get_activity_details(self, encrypted_request_token):
9696
application_profile_attribute_list = proto.attribute_list(decrypted_application_data)
9797

9898
return ActivityDetails(
99-
receipt, user_profile_attribute_list, decrypted_application_profile=application_profile_attribute_list
99+
receipt=receipt, decrypted_profile=user_profile_attribute_list, decrypted_application_profile=application_profile_attribute_list
100100
)
101101

102102
def perform_aml_check(self, aml_profile):

0 commit comments

Comments
 (0)