diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/sec_certs/model/fips_matching.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sec_certs/model/fips_matching.py b/src/sec_certs/model/fips_matching.py index f108a192..ec182aee 100644 --- a/src/sec_certs/model/fips_matching.py +++ b/src/sec_certs/model/fips_matching.py @@ -67,5 +67,6 @@ class FIPSProcessMatcher(AbstractMatcher[FIPSCertificate]): :param certificates: The certificates to match against. :return: A mapping of certificate digests to entries, without duplicates, not all entries may be present. """ + certs: list[FIPSCertificate] = list(certificates) matchers = [FIPSProcessMatcher(entry) for entry in snapshot] - return cls._match_certs(matchers, certificates, config.fips_matching_threshold) + return cls._match_certs(matchers, certs, config.fips_matching_threshold) |
