mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 11:43:13 +00:00
Add missing swigglies
This commit is contained in:
parent
04251d3805
commit
5f9c230dce
2 changed files with 3 additions and 3 deletions
|
@ -393,7 +393,7 @@ class PlexClient(object):
|
|||
""" Start playback of the specified media item.
|
||||
|
||||
Parameters:
|
||||
media (:class:`plexapi.media.Media`): Media item to be played back (movie, music, photo).
|
||||
media (:class:`~plexapi.media.Media`): Media item to be played back (movie, music, photo).
|
||||
**params (TYPE): Additional parameters to include in the request. Useful
|
||||
to specify things such as offset, audio, or subtitle streams.
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ class Library(object):
|
|||
return items
|
||||
|
||||
def section(self, title=None):
|
||||
""" Returns the :class:`plexapi.library.LibrarySection` that matches the specified title.
|
||||
""" Returns the :class:`~plexapi.library.LibrarySection` that matches the specified title.
|
||||
|
||||
Parameters:
|
||||
title (str): Title of the section to return.
|
||||
|
@ -66,7 +66,7 @@ class Library(object):
|
|||
raise NotFound('Invalid library section: %s' % title)
|
||||
|
||||
def sectionByID(self, sectionID):
|
||||
""" Returns the :class:`plexapi.library.LibrarySection` that matches the specified sectionID.
|
||||
""" Returns the :class:`~plexapi.library.LibrarySection` that matches the specified sectionID.
|
||||
|
||||
Parameters:
|
||||
sectionID (int): ID of the section to return.
|
||||
|
|
Loading…
Reference in a new issue