Skip to content

Commit

Permalink
Fix getGuid doc string (#1068)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonnyWong16 authored Dec 21, 2022
1 parent 7580fc8 commit f330d87
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plexapi/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,12 +641,12 @@ def getGuid(self, guid):
guidLookup = {}
for item in library.all():
guidLookup[item.guid] = item
guidLookup.update({guid.id for guid in item.guids}}
guidLookup.update({guid.id: item for guid in item.guids}}
result1 = guidLookup['plex://show/5d9c086c46115600200aa2fe']
result2 = guidLookup['imdb://tt0944947']
result4 = guidLookup['tmdb://1399']
result5 = guidLookup['tvdb://121361']
result3 = guidLookup['tmdb://1399']
result4 = guidLookup['tvdb://121361']
"""

Expand Down

0 comments on commit f330d87

Please sign in to comment.