Fix typo in docstring

This commit is contained in:
allegroai 2024-03-09 12:32:36 +02:00
parent 26ed3a9b21
commit 2022d036a8

View File

@ -304,7 +304,7 @@ class BaseJob(object):
def is_completed(self): def is_completed(self):
# type: () -> bool # 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 :return: True the task is currently in completed or published state
""" """
@ -313,7 +313,7 @@ class BaseJob(object):
def is_aborted(self): def is_aborted(self):
# type: () -> bool # 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 :return: True the task is currently in aborted state
""" """