Skip to content

Commit 1f74368

Browse files
committed
minor docstring edits
1 parent dea8493 commit 1f74368

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plexapi/video.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,12 +261,12 @@ def _prettyfilename(self):
261261
return self.title
262262

263263
def unmatch(self):
264-
""" Unmatches movie object"""
264+
""" Unmatches movie object. """
265265
key = '/library/metadata/%s/unmatch' % self.ratingKey
266266
return self._server.query(key, method=self._server._session.put)
267267

268268
def matches(self, auto=True, agent=None, title=None, year=None, lang=None):
269-
""" Return list of movie metadata matches from library agent"""
269+
""" Return list of movie metadata matches from library agent. """
270270
key = '/library/metadata/%s/matches' % self.ratingKey
271271
if not auto:
272272
key += '?manual=%s' % 1
@@ -459,7 +459,7 @@ def unmatch(self):
459459
self._server.query(key, method=self._server._session.put)
460460

461461
def matches(self, auto=True, agent=None, title=None, year=None, lang=None):
462-
""" Return list of show metadata matches from library agent"""
462+
""" Return list of show metadata matches from library agent. """
463463
key = '/library/metadata/%s/matches' % self.ratingKey
464464
if not auto:
465465
key += '?manual=%s' % 1

0 commit comments

Comments
 (0)