(self, *args, **kwargs)
| 1625 | ) |
| 1626 | |
| 1627 | def __attrs_post_init__(self, *args, **kwargs): |
| 1628 | if not self.purl: |
| 1629 | self.purl = self.set_purl() |
| 1630 | if not self.package_uid: |
| 1631 | self.package_uid = build_package_uid(self.purl) |
| 1632 | |
| 1633 | def to_dict(self): |
| 1634 | return super().to_dict(with_details=False) |
nothing calls this directly
no test coverage detected