From a2fed1885c73ca540de4065bd361abc0ebd6b64b Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 12 Mar 2025 23:09:44 -0400 Subject: [PATCH] Remove distutils strtobool This import takes a ridiculously long time just to implement a function that can be done in one line in O(1) time. --- client-cli/pvc/cli/helpers.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client-cli/pvc/cli/helpers.py b/client-cli/pvc/cli/helpers.py index 3a9226a4..06988306 100644 --- a/client-cli/pvc/cli/helpers.py +++ b/client-cli/pvc/cli/helpers.py @@ -20,7 +20,6 @@ ############################################################################### from click import echo as click_echo -from distutils.util import strtobool from json import load as jload from json import dump as jdump from os import chmod, environ, getpid, path, get_terminal_size @@ -150,9 +149,7 @@ def get_config(store_data, connection=None): if connection == "local": config["verify_ssl"] = False else: - config["verify_ssl"] = bool( - strtobool(environ.get("PVC_CLIENT_VERIFY_SSL", "True")) - ) + config["verify_ssl"] = environ.get("PVC_CLIENT_VERIFY_SSL", "True") == "True" return config