Skip to content

Commit 6f31f46

Browse files
committed
Improved docstring
1 parent 0733ebb commit 6f31f46

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arango/job.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@ def status(self) -> str:
6262
:return: Async job status. Possible values are "pending" (job is still
6363
in queue), "done" (job finished or raised an error).
6464
:rtype: str
65-
:raise arango.exceptions.AsyncJobStatusError: If retrieval fails.
65+
:raise arango.exceptions.AsyncJobStatusError: If retrieval fails or
66+
job is not found.
6667
"""
6768
request = Request(method="get", endpoint=f"/_api/job/{self._id}")
6869
resp = self._conn.send_request(request)

0 commit comments

Comments
 (0)