forgot a comma

This commit is contained in:
2022-11-01 13:24:31 -04:00
parent ce06903ec9
commit 68bc93499a

View File

@@ -2,7 +2,7 @@ import pandas as pd
import PySimpleGUI as sg
sg.theme("Brownblue")
layout = [[sg.T("")], [sg.Text("Choisir le fichier CSV: "), sg.Input(key="-IN2-", change_submits=True),
sg.FileBrowse(key="-IN-", file_types=(("Text Files", "*.csv")))], [sg.Button("Submit")]]
sg.FileBrowse(key="-IN-", file_types=(("CSV Files", "*.csv"),))], [sg.Button("Submit")]]
window = sg.Window('VIDEOTRON MOBILE DATA CALCULATOR', layout, size=(600, 150))