Limit the displayed weighted tags to half the threshold, so we can see

some that we're missing, but the list is not overly long
pull/4/head
Roel Kluin 2023-06-05 15:48:59 +02:00
parent 1856cee741
commit baa3c4ecc2
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def on_interrogate(
return [
', '.join(processed_tags.keys() if add_confident_as_weight else processed_tags),
ratings,
tags,
dict(filter(lambda x: x[1] >= threshold / 2, tags.items())),
''
]