Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
hancush committed Jul 9, 2024
1 parent d90d277 commit 52f4b0d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions councilmatic_core/feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,6 @@ class EventsFeed(Feed):

title = settings.CITY_COUNCIL_NAME + " " + "Recent Events"
link = reverse_lazy("events")
description = "Recently announced events."

def item_link(self, event):
# return the Councilmatic URL for the event
Expand All @@ -272,7 +271,7 @@ def item_pubdate(self, event):
return event.start_time

def description(self, obj):
return "Events"
return "Recently Announced Events"

def items(self, obj):
return Event.objects.all()[: self.NUM_RECENT_EVENTS]

0 comments on commit 52f4b0d

Please sign in to comment.