From 0e871cf9134217811bc3ba0560b5f3a60218676c Mon Sep 17 00:00:00 2001 From: Benjamin Loison <12752145+Benjamin-Loison@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:51:07 +0200 Subject: [PATCH] Assume that actual entries are prefered by Linguee --- main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.py b/main.py index 08cc4f1..a2baf8b 100755 --- a/main.py +++ b/main.py @@ -49,6 +49,8 @@ def treatSuffixes(prefix): entries.add(entry) if not base in entry: interestingEntries = False + else: + interestingEntries = False if rowsLen == MAXIMUM_SUGGESTIONS and interestingEntries: treatSuffixes(base)