(self)
| 457 | return self.Value(source, source, "Has source repository", f"+{source}") |
| 458 | |
| 459 | def has_documentation(self) -> Value: |
| 460 | doc = 1 if self.pkg.documentation_url else 0 |
| 461 | return self.Value(doc, doc, "Has documentation", f"+{doc}") |
| 462 | |
| 463 | def has_homepage(self) -> Value: |
| 464 | homepage = 1 if self.pkg.homepage_url else 0 |