nesticot commited on
Commit
64795ac
·
verified ·
1 Parent(s): 15e0621

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -88,7 +88,7 @@ app_ui = ui.page_fluid(
88
 
89
  # Row for the action button to generate plot
90
  ui.row(ui.input_action_button("generate_plot", "Generate Plot", class_="btn-primary")),
91
- ui.row(ui.download_button("download_data", "Download CSV"))
92
  ),
93
 
94
  ui.panel_main(
@@ -276,10 +276,6 @@ def server(input, output, session):
276
  fig.subplots_adjust(left=0.01, right=0.99, top=0.99, bottom=0.01)
277
 
278
 
279
- @session.download('data.csv')
280
- def download_data():
281
- pass
282
-
283
 
284
  app = App(app_ui, server)
285
 
 
88
 
89
  # Row for the action button to generate plot
90
  ui.row(ui.input_action_button("generate_plot", "Generate Plot", class_="btn-primary")),
91
+ # ui.row(ui.download_button("download_data", "Download CSV"))
92
  ),
93
 
94
  ui.panel_main(
 
276
  fig.subplots_adjust(left=0.01, right=0.99, top=0.99, bottom=0.01)
277
 
278
 
 
 
 
 
279
 
280
  app = App(app_ui, server)
281