lf_dash.py : remove n_clicks

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-08-06 15:18:38 -06:00
parent 393a3644e5
commit 2e0f9ccd2e

View File

@@ -218,7 +218,7 @@ Example: lf_dash.py --store --png --show --path <path to read kpi.csv> (read kpi
__png = args.png __png = args.png
# needed for refresh button # needed for refresh button
n_clicks = 0 # n_clicks = 0
print("config: path:{} file:{} database:{} table:{} store:{} png:{} show:{} " print("config: path:{} file:{} database:{} table:{} store:{} png:{} show:{} "
.format(__path,__file,__database,__table,args.store, args.png,args.show)) .format(__path,__file,__database,__table,args.store, args.png,args.show))
@@ -245,7 +245,8 @@ Example: lf_dash.py --store --png --show --path <path to read kpi.csv> (read kpi
if args.png: if args.png:
csv_dash.generate_graph_png() csv_dash.generate_graph_png()
if args.show: if args.show:
csv_dash.show(n_clicks) #csv_dash.show(n_clicks)
csv_dash.show()
if args.store == False and args.png == False and args.show == False: if args.store == False and args.png == False and args.show == False:
print("Need to enter an action of --store --png --show ") print("Need to enter an action of --store --png --show ")