return list of max length 3 ids with pyfiles in package not finished or processed
(self, pid)
| 865 | |
| 866 | @style.queue |
| 867 | def getUnfinished(self, pid): |
| 868 | """return list of max length 3 ids with pyfiles in package not finished or processed""" |
| 869 | |
| 870 | self.c.execute("SELECT id FROM links WHERE package=? AND status NOT IN (0, 4, 13) LIMIT 3", (str(pid),)) |
| 871 | return [r[0] for r in self.c] |
| 872 | |
| 873 | @style.queue |
| 874 | def deleteFinished(self): |
no test coverage detected