From 5b38b919c4a898e72e471a6095b59fe899e69767 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 11 Mar 2021 17:36:13 -0800 Subject: [PATCH] Update count notification parameter descriptions --- plexpy/common.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plexpy/common.py b/plexpy/common.py index dd233f4b..b51e0097 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -480,10 +480,10 @@ NOTIFICATION_PARAMETERS = [ {'name': 'Episode Number 00', 'type': 'int', 'value': 'episode_num00', 'description': 'The two digit episode number.', 'example': 'e.g. 06, or 06-10'}, {'name': 'Track Number', 'type': 'int', 'value': 'track_num', 'description': 'The track number.', 'example': 'e.g. 4, or 4-10'}, {'name': 'Track Number 00', 'type': 'int', 'value': 'track_num00', 'description': 'The two digit track number.', 'example': 'e.g. 04, or 04-10'}, - {'name': 'Season Count', 'type': 'int', 'value': 'season_count', 'description': 'The number of seasons.'}, - {'name': 'Episode Count', 'type': 'int', 'value': 'episode_count', 'description': 'The number of episodes.'}, - {'name': 'Album Count', 'type': 'int', 'value': 'album_count', 'description': 'The number of albums.'}, - {'name': 'Track Count', 'type': 'int', 'value': 'track_count', 'description': 'The number of tracks.'}, + {'name': 'Season Count', 'type': 'int', 'value': 'season_count', 'description': 'The number of seasons in a grouped recently added notification.'}, + {'name': 'Episode Count', 'type': 'int', 'value': 'episode_count', 'description': 'The number of episodes in a grouped recently added notification.'}, + {'name': 'Album Count', 'type': 'int', 'value': 'album_count', 'description': 'The number of albums in a grouped recently added notification.'}, + {'name': 'Track Count', 'type': 'int', 'value': 'track_count', 'description': 'The number of tracks in a grouped recently added notification.'}, {'name': 'Year', 'type': 'int', 'value': 'year', 'description': 'The release year for the item.'}, {'name': 'Release Date', 'type': 'str', 'value': 'release_date', 'description': 'The release date (in date format) for the item.'}, {'name': 'Air Date', 'type': 'str', 'value': 'air_date', 'description': 'The air date (in date format) for the item.'},