From 9ee61806f3a9335477c92b17c7e55727d925879c Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 30 Nov 2023 14:48:06 -0800 Subject: [PATCH] fix class method --- app/notify_client/job_api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/notify_client/job_api_client.py b/app/notify_client/job_api_client.py index bd4400177..5ea333993 100644 --- a/app/notify_client/job_api_client.py +++ b/app/notify_client/job_api_client.py @@ -109,7 +109,7 @@ class JobApiClient(NotifyAdminAPIClient): # make a datetime object in the user's preferred timezone if scheduled_for: - scheduled_for = self.convert_user_time_to_utc(scheduled_for) + scheduled_for = JobApiClient.convert_user_time_to_utc(scheduled_for) data.update({"scheduled_for": scheduled_for}) data = _attach_current_user(data)