From 6c34e2cb22eafa383c9b658858511cb842350832 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Thu, 6 May 2021 18:46:32 -0700 Subject: [PATCH] Update doc strings for edit_user and edit_library for required params * Fixes #1432 --- plexpy/webserve.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/plexpy/webserve.py b/plexpy/webserve.py index 322e4ad0..4130fd87 100644 --- a/plexpy/webserve.py +++ b/plexpy/webserve.py @@ -644,12 +644,13 @@ class WebInterface(object): ``` Required parameters: section_id (str): The id of the Plex library section - - Optional parameters: custom_thumb (str): The URL for the custom library thumbnail custom_art (str): The URL for the custom library background art keep_history (int): 0 or 1 + Optional parameters: + None + Returns: None ``` @@ -1370,13 +1371,14 @@ class WebInterface(object): ``` Required parameters: user_id (str): The id of the Plex user - - Optional paramters: friendly_name(str): The friendly name of the user custom_thumb (str): The URL for the custom user thumbnail keep_history (int): 0 or 1 allow_guest (int): 0 or 1 + Optional paramters: + None + Returns: None ```