Fix small error to prevent recursion on tsv2page

pull/17/head
r0man-ist 1 month ago committed by GitHub
parent 06c8b382db
commit 772e6d1a42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -405,7 +405,7 @@ def tsv2page(output_filename, keep_words, page_file, tsv_file):
@click.argument('page-file') @click.argument('page-file')
@click.argument('tsv-file') @click.argument('tsv-file')
def tsv2page_cli(output_filename, keep_words, page_file, 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() @click.command()

Loading…
Cancel
Save