Check that all licenses have a proper owner. Return a list of owners that do not exists.
(self, licenses)
| 638 | return lic |
| 639 | |
| 640 | def check_owners(self, licenses): |
| 641 | """ |
| 642 | Check that all licenses have a proper owner. Return a list of owners |
| 643 | that do not exists. |
| 644 | """ |
| 645 | downers = set() |
| 646 | for lic in licenses: |
| 647 | lico = lic.owner |
| 648 | owner = get_owner(self.api_base_url, self.api_key, lico) |
| 649 | if not owner: |
| 650 | downers.add(lico) |
| 651 | return sorted(downers) |
| 652 | |
| 653 | def fetch_spdx_license_details( |
| 654 | self, |