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

fix command line output

This commit is contained in:
Kai Labusch 2024-11-12 17:01:34 +01:00
parent 80cf64abcf
commit 198221651f

View file

@ -307,6 +307,10 @@ def tsv2tsv(tsv_in_file, tsv_out_file, ner_rest_endpoint, noproxy,
else:
tsv_tmp, _ = ner(tsv, ner_rest_endpoint, keep_tokenization=keep_tokenization)
if tsv_out_file is None:
print("\n")
return
print("\n==>")
print("Output file: {}".format(tsv_out_file))
@ -356,10 +360,6 @@ def tsv2tsv(tsv_in_file, tsv_out_file, ner_rest_endpoint, noproxy,
word_pos += 1
if tsv_out_file is None:
print("\n")
return
write_tsv(tsv_out, urls, contexts, tsv_out_file)
print("\n")