We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea823ed commit 04a1276Copy full SHA for 04a1276
roosterize/data/DataMiner.py
@@ -691,7 +691,7 @@ def collect_lemmas_doc(cls,
691
lemma_qnames_file = BashUtils.get_temp_file()
692
IOUtils.dump(lemma_qnames_file, lemma_qnames, IOUtils.Format.txt)
693
694
- lemma_qnames_backend_sexps_str: str = BashUtils.run(f"sername --require-lib={qprefix_this_doc} {lemma_qnames_file}", expected_return_code=0).stdout
+ lemma_qnames_backend_sexps_str: str = BashUtils.run(f"sername {serapi_options} --require-lib={qprefix_this_doc} {lemma_qnames_file}", expected_return_code=0).stdout
695
IOUtils.rm(lemma_qnames_file)
696
for qname_backend_sexp_str in lemma_qnames_backend_sexps_str.splitlines():
697
qname, backend_sexp_str = qname_backend_sexp_str.split(":", 1)
0 commit comments