From 46f665d0c184773a23fe2724a3256258f1036402 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 11 Jun 2025 07:13:24 -0700 Subject: [PATCH] fix codeql warning --- notifications_python_client/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/notifications_python_client/base.py b/notifications_python_client/base.py index 1a6bf15bc..32f76808d 100644 --- a/notifications_python_client/base.py +++ b/notifications_python_client/base.py @@ -101,9 +101,8 @@ class BaseAPIClient: except requests.RequestException as e: api_error = HTTPError.create(e) logger.warning( - "API %s request on %s failed with %s '%s'", + "API %s request failed with %s '%s'", method, - url, api_error.status_code, api_error.message, )