Reformatted

This commit is contained in:
MikeTheWatchGuy 2018-10-31 17:22:26 -04:00
parent f1a063ad76
commit ef324f63d6
1 changed files with 5 additions and 3 deletions

View File

@ -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)