Mental note to self.

This commit is contained in:
Vincent Driessen 2012-02-01 07:34:35 +01:00
parent 20e908039f
commit 4d2f64d4b6
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class Queue(object):
def requeue(self, job): def requeue(self, job):
"""Requeues an existing (typically a failed job) onto the queue.""" """Requeues an existing (typically a failed job) onto the queue."""
pass raise NotImplementedError('Implement this')
def dequeue(self): def dequeue(self):
"""Dequeues the function call at the front of this Queue. """Dequeues the function call at the front of this Queue.