rename id method arguments to _id

Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
Pierre Mazière 2014-01-08 23:16:50 +01:00 committed by Florent
commit 78aab49ddd
4 changed files with 7 additions and 7 deletions

View file

@ -53,7 +53,7 @@ class ICapAudio(ICapFile):
"""
return self.search_file(pattern, sortby)
def get_audio(self, id):
def get_audio(self, _id):
"""
Get an audio file from an ID.
@ -61,4 +61,4 @@ class ICapAudio(ICapFile):
:type id: str
:rtype: :class:`BaseAudio`]
"""
return self.get_file(id)
return self.get_file(_id)