From 52086d834c83cd7ac7c8658731e6755fc1d0a0d6 Mon Sep 17 00:00:00 2001 From: xop5 <153699395+xop5@users.noreply.github.com> Date: Thu, 16 Jan 2025 14:35:51 -0500 Subject: [PATCH] Removed redundant arguments (#200) * Removed redundant arguments * Restored helpers from master branch * Linting issues fixed --- cfa_azure/clients.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/cfa_azure/clients.py b/cfa_azure/clients.py index 893c6ff..6ae2c31 100644 --- a/cfa_azure/clients.py +++ b/cfa_azure/clients.py @@ -1239,15 +1239,7 @@ def monitor_job(self, job_id: str, timeout: str | None = None) -> None: """ # monitor the tasks logger.debug(f"starting to monitor job {job_id}.") - monitor = helpers.monitor_tasks( - job_id, - timeout, - self.batch_client, - self.resource_group_name, - self.account_name, - self.pool_name, - self.batch_mgmt_client, - ) + monitor = helpers.monitor_tasks(job_id, timeout, self.batch_client) print(monitor) # delete job automatically if debug is false