(cls, location, package_only=False)
| 368 | |
| 369 | @classmethod |
| 370 | def parse(cls, location, package_only=False): |
| 371 | yield parse_metadata( |
| 372 | location=location, |
| 373 | datasource_id=cls.datasource_id, |
| 374 | package_type=cls.default_package_type, |
| 375 | package_only=package_only, |
| 376 | ) |
| 377 | |
| 378 | |
| 379 | class PythonInstalledWheelMetadataFile(models.DatafileHandler): |
nothing calls this directly
no test coverage detected