From b9dbf948a30ad1e3ac0fe5d09c5d07dda7b573c8 Mon Sep 17 00:00:00 2001 From: david ruiz Date: Fri, 8 May 2026 11:50:27 +0200 Subject: [PATCH 1/2] Fix pip install issues --- checkout_sdk/identities/__init__.py | 0 setup.py | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 checkout_sdk/identities/__init__.py diff --git a/checkout_sdk/identities/__init__.py b/checkout_sdk/identities/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/setup.py b/setup.py index f335722b..2d671bd6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,8 @@ license='MIT', packages=setuptools.find_packages(exclude=['tests', 'tests.*']), install_requires=[ - 'requests >= 2.27.1' + 'requests >= 2.27.1', + 'Deprecated >= 1.2.14' ], test_suite='tests', python_requires='>=3.10', From 2ebceac014da46b40f6bf88bc56dfcf129353c60 Mon Sep 17 00:00:00 2001 From: david ruiz Date: Fri, 8 May 2026 11:58:51 +0200 Subject: [PATCH 2/2] Fixing pylint style warnings --- .../identities/faceauthentication/faceauthentication_client.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/checkout_sdk/identities/faceauthentication/faceauthentication_client.py b/checkout_sdk/identities/faceauthentication/faceauthentication_client.py index 37cb96cb..6f623ef9 100644 --- a/checkout_sdk/identities/faceauthentication/faceauthentication_client.py +++ b/checkout_sdk/identities/faceauthentication/faceauthentication_client.py @@ -33,7 +33,8 @@ def anonymize_face_authentication(self, face_authentication_id: str): self.build_path(self.__FACE_AUTHENTICATIONS_PATH, face_authentication_id, self.__ANONYMIZE_PATH), self._sdk_authorization()) - def create_face_authentication_attempt(self, face_authentication_id: str, request: FaceAuthenticationAttemptRequest): + def create_face_authentication_attempt(self, face_authentication_id: str, + request: FaceAuthenticationAttemptRequest): return self._api_client.post( self.build_path(self.__FACE_AUTHENTICATIONS_PATH, face_authentication_id, self.__ATTEMPTS_PATH), self._sdk_authorization(),