Move the noop OCR backend to the right place.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-10-18 16:21:12 -04:00
parent 8fcc61bde5
commit bcd2427ab6

View File

@@ -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"""