From 1ae844e7fc8e8e5cd510618653b7058ae882b68a Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Thu, 23 Feb 2023 12:01:31 -0500 Subject: [PATCH] Picked up docstring changes for Window.timer_start in the call reference --- docs/call reference.md | 3 ++- readme_creator/output/call reference.md | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/call reference.md b/docs/call reference.md index 654561b7..935ad72a 100644 --- a/docs/call reference.md +++ b/docs/call reference.md @@ -13867,7 +13867,8 @@ Returns a list of currently active timers for a window ### timer_start Starts a timer that gnerates Timer Events. The default is to repeat the timer events until timer is stopped. -You can provide your own key or a default key will be used. +You can provide your own key or a default key will be used. The default key is defined +with the constants EVENT_TIMER or TIMER_KEY. They both equal the same value. The values dictionary will contain the timer ID that is returned from this function. ``` diff --git a/readme_creator/output/call reference.md b/readme_creator/output/call reference.md index 654561b7..935ad72a 100644 --- a/readme_creator/output/call reference.md +++ b/readme_creator/output/call reference.md @@ -13867,7 +13867,8 @@ Returns a list of currently active timers for a window ### timer_start Starts a timer that gnerates Timer Events. The default is to repeat the timer events until timer is stopped. -You can provide your own key or a default key will be used. +You can provide your own key or a default key will be used. The default key is defined +with the constants EVENT_TIMER or TIMER_KEY. They both equal the same value. The values dictionary will contain the timer ID that is returned from this function. ```