fixed initial computation queue state

This commit is contained in:
Matthias Bisping 2022-05-05 16:42:43 +02:00
parent 373c38113f
commit 4a3ac150cf

View File

@ -29,7 +29,7 @@ def make_processor_fn(operation, buffer_size, batched):
class Processor(abc.ABC):
def __init__(self, processor_fn):
self.execution_queue = []
self.execution_queue = chain([])
self.processor_fn = processor_fn
def run(self, package, final):