Skip to content

Commit

Permalink
Removed redundant arguments (#200)
Browse files Browse the repository at this point in the history
* Removed redundant arguments

* Restored helpers from master branch

* Linting issues fixed
  • Loading branch information
xop5 authored Jan 16, 2025
1 parent 0522e08 commit 52086d8
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions cfa_azure/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 52086d8

Please sign in to comment.