From 2022d036a8c376a0e486796b667bc0d40ce4028f Mon Sep 17 00:00:00 2001 From: allegroai <> Date: Sat, 9 Mar 2024 12:32:36 +0200 Subject: [PATCH] Fix typo in docstring --- clearml/automation/job.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clearml/automation/job.py b/clearml/automation/job.py index dcd52ce3..30396b88 100644 --- a/clearml/automation/job.py +++ b/clearml/automation/job.py @@ -304,7 +304,7 @@ class BaseJob(object): def is_completed(self): # type: () -> bool """ - Return True, if job is has executed and completed successfully + Return True, if job was executed and completed successfully :return: True the task is currently in completed or published state """ @@ -313,7 +313,7 @@ class BaseJob(object): def is_aborted(self): # type: () -> bool """ - Return True, if job is has executed and aborted + Return True, if job was executed and aborted :return: True the task is currently in aborted state """