Skip to content

Commit 81c16b7

Browse files
committed
docs: Removed typo
1 parent 28bd9db commit 81c16b7

1 file changed

Lines changed: 0 additions & 5 deletions

File tree

plexapi/base.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -813,8 +813,6 @@ class Playable:
813813
Things were getting mixed up a bit when dealing with Shows, Season, Artists,
814814
Albums which are all not playable.
815815
816-
This class
817-
818816
Attributes:
819817
playlistItemID (int): Playlist item ID (only populated for :class:`~plexapi.playlist.Playlist` items).
820818
playQueueItemID (int): PlayQueue item ID (only populated for :class:`~plexapi.playlist.PlayQueue` items).
@@ -1005,10 +1003,7 @@ class PlexSession:
10051003
def _loadData(self, data):
10061004
""" Load attribute values from Plex XML response. """
10071005
self.live = utils.cast(bool, data.attrib.get('live', '0'))
1008-
self.player = self.findItem(data, etag='Player')
1009-
self.session = self.findItem(data, etag='Session')
10101006
self.sessionKey = utils.cast(int, data.attrib.get('sessionKey'))
1011-
self.transcodeSession = self.findItem(data, etag='TranscodeSession')
10121007

10131008
user = data.find('User')
10141009
self._username = user.attrib.get('title')

0 commit comments

Comments
 (0)