readabilite: fix bug when nothing above threshold
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
pictuga 2021-11-23 20:53:00 +01:00
parent 37e08f8b4c
commit d8cc07223e

View File

@ -352,6 +352,10 @@ def get_article(data, url=None, encoding_in=None, encoding_out='unicode', debug=
else:
best = get_best_node(html, threshold)
if best is None:
# if threshold not met
return None
# clean up
if not debug:
keep_threshold = get_score(best) * 3/4