Return a JSON-encodable object to serve as the 'result' for new jobs.
(self)
| 997 | return result["status"] |
| 998 | |
| 999 | def new_result(self): |
| 1000 | """Return a JSON-encodable object |
| 1001 | to serve as the 'result' for new jobs. |
| 1002 | """ |
| 1003 | return {"status": STATUS_NEW} |
| 1004 | |
| 1005 | |
| 1006 | # -- flake8 doesn't like blank last line |