Added some whitespace to make things more readable

This commit is contained in:
PySimpleGUI 2021-05-31 15:41:31 -04:00
parent 616ec13c9c
commit edfb83c2be
1 changed files with 6 additions and 1 deletions

View File

@ -10,4 +10,9 @@ import PySimpleGUI as sg
Copyright 2021 PySimpleGUI
"""
sg.Window('Sudoku', [[sg.Frame('', [[sg.Input(justification='r', size=(3,1)) for col in range(3)] for row in range(3)]) for frame_col in range(3)] for frame_row in range(3)], use_custom_titlebar=True).read()
sg.Window('Sudoku', [[sg.Frame('', [[sg.Input(justification='r', size=(3,1))
for col in range(3)]
for row in range(3)])
for frame_col in range(3)]
for frame_row in range(3)],
use_custom_titlebar=True).read()