Pacify mypy

This commit is contained in:
Itamar Turner-Trauring 2023-06-14 17:57:25 -04:00
parent 0f8100b1e9
commit 96afb0743a

View File

@ -39,6 +39,12 @@ class Producer(object):
self.consumer = consumer
self.done = False
def stopProducing(self):
pass
def pauseProducing(self):
pass
def resumeProducing(self):
"""Kick off streaming."""
self.iterate()