mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 14:14:19 +00:00
Try building docs again
This commit is contained in:
parent
fc1c10e554
commit
eb69d8faed
2 changed files with 1 additions and 5 deletions
|
@ -16,7 +16,7 @@ import copy, sys
|
|||
import sphinx_rtd_theme
|
||||
from os.path import abspath, dirname, join
|
||||
from recommonmark.parser import CommonMarkParser
|
||||
sys.path.insert(0, join(dirname(abspath('.')), 'plexapi'))
|
||||
sys.path.insert(0, join(dirname(abspath(__file__)), 'plexapi'))
|
||||
import plexapi
|
||||
|
||||
extensions = [
|
||||
|
|
|
@ -150,7 +150,6 @@ class MyPlexAccount(PlexObject):
|
|||
return [MyPlexUser(self, elem) for elem in data]
|
||||
|
||||
|
||||
@utils.registerPlexObject
|
||||
class MyPlexUser(PlexObject):
|
||||
""" This object represents non-signed in users such as friends and linked
|
||||
accounts. NOTE: This should not be confused with the :class:`~myplex.MyPlexAccount`
|
||||
|
@ -200,7 +199,6 @@ class MyPlexUser(PlexObject):
|
|||
self.username = data.attrib.get('username')
|
||||
|
||||
|
||||
#@utils.registerPlexObject
|
||||
class MyPlexResource(PlexObject):
|
||||
""" This object represents resources connected to your Plex server that can provide
|
||||
content such as Plex Media Servers, iPhone or Android clients, etc. The raw xml
|
||||
|
@ -297,7 +295,6 @@ class MyPlexResource(PlexObject):
|
|||
results[i] = (url, self.accessToken, None)
|
||||
|
||||
|
||||
@utils.registerPlexObject
|
||||
class ResourceConnection(PlexObject):
|
||||
""" Represents a Resource Connection object found within the
|
||||
:class:`~myplex.MyPlexResource` objects.
|
||||
|
@ -322,7 +319,6 @@ class ResourceConnection(PlexObject):
|
|||
self.httpuri = 'http://%s:%s' % (self.address, self.port)
|
||||
|
||||
|
||||
#@utils.registerPlexObject
|
||||
class MyPlexDevice(PlexObject):
|
||||
""" This object represents resources connected to your Plex server that provide
|
||||
playback ability from your Plex Server, iPhone or Android clients, Plex Web,
|
||||
|
|
Loading…
Reference in a new issue