Skip to content

Commit 4f6ee3c

Browse files
committed
indention correction found in Flake test
1 parent d9e3b9f commit 4f6ee3c

File tree

1 file changed

+32
-32
lines changed

1 file changed

+32
-32
lines changed

plexapi/media.py

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -407,38 +407,38 @@ class Conversion(PlexObject):
407407
TAG = 'Video'
408408

409409
def _loadData(self, data):
410-
self._data = data
411-
self.addedAt = data.attrib.get('addedAt')
412-
self.art = data.attrib.get('art')
413-
self.chapterSource = data.attrib.get('chapterSource')
414-
self.contentRating = data.attrib.get('contentRating')
415-
self.duration = data.attrib.get('duration')
416-
self.generatorID = data.attrib.get('generatorID')
417-
self.generatorType = data.attrib.get('generatorType')
418-
self.guid = data.attrib.get('guid')
419-
self.key = data.attrib.get('key')
420-
self.lastViewedAt = data.attrib.get('lastViewedAt')
421-
self.librarySectionID = data.attrib.get('librarySectionID')
422-
self.librarySectionKey = data.attrib.get('librarySectionKey')
423-
self.librarySectionTitle = data.attrib.get('librarySectionTitle')
424-
self.originallyAvailableAt = data.attrib.get('originallyAvailableAt')
425-
self.playQueueItemID = data.attrib.get('playQueueItemID')
426-
self.playlistID = data.attrib.get('playlistID')
427-
self.primaryExtraKey = data.attrib.get('primaryExtraKey')
428-
self.rating = data.attrib.get('rating')
429-
self.ratingKey = data.attrib.get('ratingKey')
430-
self.studio = data.attrib.get('studio')
431-
self.summary = data.attrib.get('summary')
432-
self.tagline = data.attrib.get('tagline')
433-
self.target = data.attrib.get('target')
434-
self.thumb = data.attrib.get('thumb')
435-
self.title = data.attrib.get('title')
436-
self.type = data.attrib.get('type')
437-
self.updatedAt = data.attrib.get('updatedAt')
438-
self.userID = data.attrib.get('userID')
439-
self.username = data.attrib.get('username')
440-
self.viewOffset = data.attrib.get('viewOffset')
441-
self.year = data.attrib.get('year')
410+
self._data = data
411+
self.addedAt = data.attrib.get('addedAt')
412+
self.art = data.attrib.get('art')
413+
self.chapterSource = data.attrib.get('chapterSource')
414+
self.contentRating = data.attrib.get('contentRating')
415+
self.duration = data.attrib.get('duration')
416+
self.generatorID = data.attrib.get('generatorID')
417+
self.generatorType = data.attrib.get('generatorType')
418+
self.guid = data.attrib.get('guid')
419+
self.key = data.attrib.get('key')
420+
self.lastViewedAt = data.attrib.get('lastViewedAt')
421+
self.librarySectionID = data.attrib.get('librarySectionID')
422+
self.librarySectionKey = data.attrib.get('librarySectionKey')
423+
self.librarySectionTitle = data.attrib.get('librarySectionTitle')
424+
self.originallyAvailableAt = data.attrib.get('originallyAvailableAt')
425+
self.playQueueItemID = data.attrib.get('playQueueItemID')
426+
self.playlistID = data.attrib.get('playlistID')
427+
self.primaryExtraKey = data.attrib.get('primaryExtraKey')
428+
self.rating = data.attrib.get('rating')
429+
self.ratingKey = data.attrib.get('ratingKey')
430+
self.studio = data.attrib.get('studio')
431+
self.summary = data.attrib.get('summary')
432+
self.tagline = data.attrib.get('tagline')
433+
self.target = data.attrib.get('target')
434+
self.thumb = data.attrib.get('thumb')
435+
self.title = data.attrib.get('title')
436+
self.type = data.attrib.get('type')
437+
self.updatedAt = data.attrib.get('updatedAt')
438+
self.userID = data.attrib.get('userID')
439+
self.username = data.attrib.get('username')
440+
self.viewOffset = data.attrib.get('viewOffset')
441+
self.year = data.attrib.get('year')
442442

443443
def remove(self):
444444
""" Remove Conversion from queue """

0 commit comments

Comments
 (0)