From 1db1da01527d473d2ddb874dfa256d081a242908 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Tue, 14 Apr 2020 07:28:27 -0400 Subject: [PATCH] Coupole of docstring fixes --- PySimpleGUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 7d8aaf91..1cfa25d4 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1178,7 +1178,7 @@ class Combo(Element): tooltip=None, readonly=False, font=None, visible=True, metadata=None): """ :param values: values to choose. While displayed as text, the items returned are what the caller supplied, not text - :type values: List[Any] + :type values: List[Any] or Tuple[Any] :param default_value: Choice to be displayed as initial value. Must match one of values variable contents :type default_value: (Any) :param size: width = characters-wide, height = rows-high @@ -13197,7 +13197,7 @@ def theme_list(): Returns a sorted list of the currently available color themes :return: List[str] - A sorted list of the currently available color themes - :rtype: (str) + :rtype: List[str] """ return list_of_look_and_feel_values()