Return True if any of the matches in ``license_matches`` List of LicenseMatch has an `unknown` rule identifier.
(license_matches)
| 1240 | |
| 1241 | |
| 1242 | def has_unknown_matches(license_matches): |
| 1243 | """ |
| 1244 | Return True if any of the matches in ``license_matches`` List of LicenseMatch |
| 1245 | has an `unknown` rule identifier. |
| 1246 | """ |
| 1247 | return any(match.rule.has_unknown for match in license_matches) |
| 1248 | |
| 1249 | |
| 1250 | def is_unknown_intro(license_match): |
no outgoing calls
no test coverage detected