From ef324f63d6c9bface5c8eb53c0f26a36ab6690d1 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Wed, 31 Oct 2018 17:22:26 -0400 Subject: [PATCH] Reformatted --- Demo_Design_Pattern_Persistent_Window.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Demo_Design_Pattern_Persistent_Window.py b/Demo_Design_Pattern_Persistent_Window.py index a89f495a..c116a533 100644 --- a/Demo_Design_Pattern_Persistent_Window.py +++ b/Demo_Design_Pattern_Persistent_Window.py @@ -5,9 +5,11 @@ if sys.version_info[0] >= 3: else: import PySimpleGUI27 as sg -layout = [[sg.Text('Your typed chars appear here:'), sg.Text('', key='_OUTPUT_')], - [sg.Input(do_not_clear=True, key='_IN_')], - [sg.Button('Show'), sg.Button('Exit')]] +layout = [ + [sg.Text('Your typed chars appear here:'), sg.Text('', key='_OUTPUT_')], + [sg.Input(do_not_clear=True, key='_IN_')], + [sg.Button('Show'), sg.Button('Exit')] + ] window = sg.Window('Window Title').Layout(layout)