Return a queryset of packages that are affected by this vulnerability.
(self)
| 332 | |
| 333 | @property |
| 334 | def affected_packages(self): |
| 335 | """ |
| 336 | Return a queryset of packages that are affected by this vulnerability. |
| 337 | """ |
| 338 | return self.affecting_packages.with_is_vulnerable() |
| 339 | |
| 340 | @property |
| 341 | def packages_fixing(self): |
nothing calls this directly
no test coverage detected