Fix lint warnings
This commit is contained in:
parent
b1fe2483ae
commit
e01c27ea3e
1 changed files with 5 additions and 3 deletions
|
@ -223,9 +223,11 @@ class CastFeed(CastFeedBase):
|
|||
def item_categories(self, item):
|
||||
return ('Technology',)
|
||||
|
||||
def copyright_holder(self): return "Software Freedom Conservancy"
|
||||
def copyright_holder(self):
|
||||
return "Software Freedom Conservancy"
|
||||
|
||||
def license_no_html(self): return "Licensed under a Creative Commons Attribution-Share Alike 3.0 USA License."
|
||||
def license_no_html(self):
|
||||
return "Licensed under a Creative Commons Attribution-Share Alike 3.0 USA License."
|
||||
|
||||
def feed_extra_kwargs(self, obj):
|
||||
return for_podcast_feed_extra_kwargs(self, obj)
|
||||
|
|
Loading…
Reference in a new issue