rename id method arguments to _id
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
78aab49ddd
commit
46513c7783
1 changed files with 2 additions and 2 deletions
|
|
@ -55,7 +55,7 @@ class ICapAudioStream(ICapAudio):
|
|||
"""
|
||||
return self.search_audio(pattern, sortby)
|
||||
|
||||
def get_audiostream(self, id):
|
||||
def get_audiostream(self, _id):
|
||||
"""
|
||||
Get an audio stream
|
||||
|
||||
|
|
@ -63,4 +63,4 @@ class ICapAudioStream(ICapAudio):
|
|||
:type id: str
|
||||
:rtype: :class:`BaseAudioStream`
|
||||
"""
|
||||
return self.get_audio(id)
|
||||
return self.get_audio(_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue