Skip to content

Commit

Permalink
Remove deprecated uri argument (ismailof#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarmvZ committed Oct 19, 2020
1 parent 5b2f8bb commit 3896569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_json_client/methods_2_0/tracklist.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def add(self, tracks=None, at_position=None, uri=None, uris=None, **options):
.. deprecated:: 1.0
The ``tracks`` and ``uri`` arguments. Use ``uris``.
'''
return self.mopidy_request('core.tracklist.add', tracks=tracks, at_position=at_position, uri=uri, uris=uris, **options)
return self.mopidy_request('core.tracklist.add', tracks=tracks, at_position=at_position, uris=uris, **options)

def get_eot_tlid(self, **options):
'''The TLID of the track that will be played after the current track.
Expand Down

0 comments on commit 3896569

Please sign in to comment.