1
0
Fork 0
mirror of https://github.com/qurator-spk/page2tsv.git synced 2025-06-09 19:39:54 +02:00

Fix small error to prevent recursion on tsv2page

This commit is contained in:
r0man-ist 2024-09-10 14:08:41 +02:00 committed by GitHub
parent 06c8b382db
commit 772e6d1a42
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -405,7 +405,7 @@ def tsv2page(output_filename, keep_words, page_file, tsv_file):
@click.argument('page-file')
@click.argument('tsv-file')
def tsv2page_cli(output_filename, keep_words, page_file, tsv_file):
return tsv2page_cli(output_filename, keep_words, page_file, tsv_file)
return tsv2page(output_filename, keep_words, page_file, tsv_file)
@click.command()