diff --git a/plexapi/audio.py b/plexapi/audio.py index 3d2ba515..4ce76af3 100644 --- a/plexapi/audio.py +++ b/plexapi/audio.py @@ -7,8 +7,8 @@ from plexapi.exceptions import BadRequest class Audio(PlexPartialObject): - """ Base class for audio :class:`~plexapi.audio.Artist`, :class:`~plexapi.audio.Album` - and :class:`~plexapi.audio.Track` objects. + """ Base class for all audio objects including :class:`~plexapi.audio.Artist`, + :class:`~plexapi.audio.Album`, and :class:`~plexapi.audio.Track`. Attributes: addedAt (datetime): Datetime the item was added to the library. @@ -124,7 +124,7 @@ class Audio(PlexPartialObject): @utils.registerPlexObject class Artist(Audio): - """ Represents a single audio artist. + """ Represents a single Artist. Attributes: TAG (str): 'Directory' @@ -218,7 +218,7 @@ class Artist(Audio): @utils.registerPlexObject class Album(Audio): - """ Represents a single audio album. + """ Represents a single Album. Attributes: TAG (str): 'Directory' @@ -324,7 +324,7 @@ class Album(Audio): @utils.registerPlexObject class Track(Audio, Playable): - """ Represents a single audio track. + """ Represents a single Track. Attributes: TAG (str): 'Directory' diff --git a/plexapi/photo.py b/plexapi/photo.py index 1e11b1dc..f0932a1a 100644 --- a/plexapi/photo.py +++ b/plexapi/photo.py @@ -8,7 +8,7 @@ from plexapi.exceptions import BadRequest @utils.registerPlexObject class Photoalbum(PlexPartialObject): - """ Represents a photoalbum (collection of photos). + """ Represents a single Photoalbum (collection of photos). Attributes: TAG (str): 'Directory' @@ -137,7 +137,7 @@ class Photoalbum(PlexPartialObject): @utils.registerPlexObject class Photo(PlexPartialObject, Playable): - """ Represents a single photo. + """ Represents a single Photo. Attributes: TAG (str): 'Photo' diff --git a/plexapi/video.py b/plexapi/video.py index 91d3c14a..23105655 100644 --- a/plexapi/video.py +++ b/plexapi/video.py @@ -10,7 +10,7 @@ from plexapi.exceptions import BadRequest, NotFound class Video(PlexPartialObject): """ Base class for all video objects including :class:`~plexapi.video.Movie`, :class:`~plexapi.video.Show`, :class:`~plexapi.video.Season`, - :class:`~plexapi.video.Episode`, :class:`~plexapi.video.Clip`. + :class:`~plexapi.video.Episode`, and :class:`~plexapi.video.Clip`. Attributes: addedAt (datetime): Datetime the item was added to the library.