diff options
-rw-r--r-- | fuzzycat/fatcat/matching.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzzycat/fatcat/matching.py b/fuzzycat/fatcat/matching.py index 9b46935..3ce8269 100644 --- a/fuzzycat/fatcat/matching.py +++ b/fuzzycat/fatcat/matching.py @@ -218,6 +218,8 @@ def verify_serial_name(a: str, b: str) -> MatchStatus: if len(a & b) > 0: return MatchStatus.STRONG + return MatchStatus.AMBIGIOUS + # First, try values as given. issnls_for_a = serialsdb.get(a, set()) issnls_for_b = serialsdb.get(b, set()) |