From edfbedacc3bcd6bf6d882ce909119d06a37d0c30 Mon Sep 17 00:00:00 2001 From: Martin Putzlocher Date: Wed, 1 Dec 2021 16:48:13 +0100 Subject: [PATCH] stopwatch: added create_control_variables als Methode ausgelagert. --- tk_first_steps/stopwatch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tk_first_steps/stopwatch.py b/tk_first_steps/stopwatch.py index 9088cd9..77901fe 100644 --- a/tk_first_steps/stopwatch.py +++ b/tk_first_steps/stopwatch.py @@ -65,6 +65,7 @@ class StopWatch_App(Tk): def __init__(self): super().__init__() self.controller = WatchController(self) + self.create_control_variables() self.create_widgets() self.bind_events()