diff --git a/noopocr.py b/noopocr.py new file mode 100644 index 0000000000..cd07f518ce --- /dev/null +++ b/noopocr.py @@ -0,0 +1,11 @@ +from __future__ import absolute_import, unicode_literals + +from ..classes import OCRBackendBase + + +class NoOpOCR(OCRBackendBase): + def __init__(self, *args, **kwargs): + super(NoOpOCR, self).__init__(*args, **kwargs) + + def execute(self, *args, **kwargs): + """Don't do anything"""