Fixed the rest of false positives for now (#371)

* Fixed the rest of false positives for now

* Fixed tag

* Updated site list and statistics
This commit is contained in:
Soxoj
2022-02-26 16:43:40 +03:00
committed by GitHub
parent bc787cdf51
commit 8a53a38543
4 changed files with 35 additions and 22 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ def notify_about_errors(search_results: QueryResultWrapper, query_notify):
for e in errs:
if not errors.is_important(e):
continue
text = f'Too many errors of type "{e["err"]}" ({e["perc"]}%)'
text = f'Too many errors of type "{e["err"]}" ({round(e["perc"],2)}%)'
solution = errors.solution_of(e['err'])
if solution:
text = '. '.join([text, solution.capitalize()])