From ed06cf5695f253677fb78b54a5adf5b6e2cd887d Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 22 Jul 2025 11:35:37 -0700 Subject: [PATCH] fix --- notifications_python_client/__init__.py | 3 --- notifications_utils/__init__.py | 6 +----- tests/app/__init__.py | 3 --- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/notifications_python_client/__init__.py b/notifications_python_client/__init__.py index 8f92d2c5b..436df44f5 100644 --- a/notifications_python_client/__init__.py +++ b/notifications_python_client/__init__.py @@ -8,9 +8,6 @@ # -- http://semver.org/ __version__ = "10.0.1" -import truststore - -truststore.inject_into_ssl() from notifications_python_client.errors import ( # noqa REQUEST_ERROR_MESSAGE, diff --git a/notifications_utils/__init__.py b/notifications_utils/__init__.py index f7d2ba159..84a55d644 100644 --- a/notifications_utils/__init__.py +++ b/notifications_utils/__init__.py @@ -1,8 +1,4 @@ -import truststore - -truststore.inject_into_ssl() - -import re # noqa +import re SMS_CHAR_COUNT_LIMIT = 918 # 153 * 6, no network issues but check with providers before upping this further LETTER_MAX_PAGE_COUNT = 10 diff --git a/tests/app/__init__.py b/tests/app/__init__.py index 9580c11ed..e69de29bb 100644 --- a/tests/app/__init__.py +++ b/tests/app/__init__.py @@ -1,3 +0,0 @@ -import truststore - -truststore.inject_into_ssl()