Easy spacing fixes, trailing stuff
Remove useless trailing \ Remove trailing spaces Add missing empty lines autopep8 -ir -j2 --select=E301,E302,E502,W291,W293,W391 . Diff quickly checked.
This commit is contained in:
parent
c21d1f7925
commit
7094931c92
231 changed files with 474 additions and 67 deletions
|
|
@ -41,6 +41,7 @@ class Emission(CapBaseObject):
|
|||
else:
|
||||
return self.title
|
||||
|
||||
|
||||
class Stream(CapBaseObject):
|
||||
"""
|
||||
Stream of a radio.
|
||||
|
|
@ -54,6 +55,7 @@ class Stream(CapBaseObject):
|
|||
def __repr__(self):
|
||||
return self.__unicode__()
|
||||
|
||||
|
||||
class Radio(CapBaseObject):
|
||||
"""
|
||||
Radio object.
|
||||
|
|
@ -63,6 +65,7 @@ class Radio(CapBaseObject):
|
|||
current = Field('Current emission', Emission)
|
||||
streams = Field('List of streams', list)
|
||||
|
||||
|
||||
class ICapRadio(IBaseCap):
|
||||
"""
|
||||
Capability of radio websites.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue