Remove unused variable 'possibles'

This commit is contained in:
Gerber, Mike 2022-09-13 14:14:02 +02:00
parent a78f40a89d
commit 2553bd39f9

View file

@ -2164,8 +2164,6 @@ class textline_detector:
@click.option('--out', '-o', help='directory to write output xml data', type=click.Path(exists=True, file_okay=False))
@click.option('--model', '-m', help='directory of models', type=click.Path(exists=True, file_okay=False))
def main(image, out, model):
possibles = globals() # XXX unused?
possibles.update(locals())
x = textline_detector(image, out, None, model)
x.run()