Skip to content

Commit 8e5a698

Browse files
committed
SDK-826: Update verify ssl logic to check for false in lowercase
1 parent c7662df commit 8e5a698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

yoti_python_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
)
3131

3232
YOTI_API_VERIFY_SSL = environ.get("YOTI_API_VERIFY_SSL", DEFAULTS["YOTI_API_VERIFY_SSL"])
33-
if YOTI_API_VERIFY_SSL == "false":
33+
if YOTI_API_VERIFY_SSL.lower() == "false":
3434
YOTI_API_VERIFY_SSL = False
3535
else:
3636
YOTI_API_VERIFY_SSL = True

0 commit comments

Comments
 (0)