diff --git a/downloads/views.py b/downloads/views.py index 3742badbe..6a7f9d95e 100644 --- a/downloads/views.py +++ b/downloads/views.py @@ -192,11 +192,3 @@ def item_pubdate(self, item: Release) -> datetime | None: return timezone.make_aware(item.release_date) return item.release_date return None - - def item_guid(self, item: Release) -> str: - """Return a link as the GUID for the item. - - ``guid`` must be a full URL, unless `isPermaLink` attribute is false - https://validator.w3.org/feed/docs/error/InvalidHttpGUID.html - """ - return str(item.get_absolute_url())