(self, unique=False)
| 2079 | return str(build_spdx_license_expression(self.license_expression, licensing=get_cache().licensing)) |
| 2080 | |
| 2081 | def get_length(self, unique=False): |
| 2082 | return self.length_unique if unique else self.length |
| 2083 | |
| 2084 | def get_min_matched_length(self, unique=False): |
| 2085 | return (self.min_matched_length_unique if unique |
no outgoing calls
no test coverage detected