From 71a60dd80978d5531f663fb2af2ed8da16cbf2af Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Fri, 3 Aug 2018 16:45:51 -0400 Subject: [PATCH] Removed f-string --- Demo_Tabbed_Form.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Demo_Tabbed_Form.py b/Demo_Tabbed_Form.py index 4305a003..00ac6fd5 100644 --- a/Demo_Tabbed_Form.py +++ b/Demo_Tabbed_Form.py @@ -1,7 +1,5 @@ import PySimpleGUI as sg -MAX_NUMBER_OF_THREADS = 12 - def eBaySuperSearcherGUI(): # Drop Down list of options configs = ('0 - Gruen - Started 2 days ago in Watches', @@ -55,7 +53,7 @@ def eBaySuperSearcherGUI(): [sg.Text('_'*100, size=(80,1))], [sg.Text('Price Range'), sg.InputText(size=(10,1)),sg.Text('To'), sg.InputText(size=(10,1))], [sg.Text('_'*100, size=(80,1))], - [sg.Submit(button_color=('red', 'yellow')), sg.Cancel(button_color=('white', 'blue')), sg.Text(f'{MAX_NUMBER_OF_THREADS} Threads will be started')]] + [sg.Submit(button_color=('red', 'yellow')), sg.Cancel(button_color=('white', 'blue'))]] # First category is default (need to special case this)