Skip to content

Commit fa43351

Browse files
committed
Fix docstring typos
1 parent 235232f commit fa43351

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

plexapi/mixins.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def uploadArt(self, url=None, filepath=None):
382382
383383
Parameters:
384384
url (str): The full URL to the image to upload.
385-
filepath (str): The full file path the the image to upload or file-like object.
385+
filepath (str): The full file path to the image to upload or file-like object.
386386
"""
387387
if url:
388388
key = f'/library/metadata/{self.ratingKey}/arts?url={quote_plus(url)}'
@@ -437,7 +437,7 @@ def uploadLogo(self, url=None, filepath=None):
437437
438438
Parameters:
439439
url (str): The full URL to the image to upload.
440-
filepath (str): The full file path the the image to upload or file-like object.
440+
filepath (str): The full file path to the image to upload or file-like object.
441441
"""
442442
if url:
443443
key = f'/library/metadata/{self.ratingKey}/clearLogos?url={quote_plus(url)}'
@@ -499,7 +499,7 @@ def uploadPoster(self, url=None, filepath=None):
499499
500500
Parameters:
501501
url (str): The full URL to the image to upload.
502-
filepath (str): The full file path the the image to upload or file-like object.
502+
filepath (str): The full file path to the image to upload or file-like object.
503503
"""
504504
if url:
505505
key = f'/library/metadata/{self.ratingKey}/posters?url={quote_plus(url)}'
@@ -558,7 +558,7 @@ def uploadSquareArt(self, url=None, filepath=None):
558558
559559
Parameters:
560560
url (str): The full URL to the image to upload.
561-
filepath (str): The full file path the the image to upload or file-like object.
561+
filepath (str): The full file path to the image to upload or file-like object.
562562
"""
563563
if url:
564564
key = f'/library/metadata/{self.ratingKey}/squareArts?url={quote_plus(url)}'

0 commit comments

Comments
 (0)