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:
parent
80cf64abcf
commit
198221651f
1 changed files with 4 additions and 4 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue