C2MV commited on
Commit
d3f3543
1 Parent(s): 28dea9b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,9 +1,10 @@
1
  # app.py
2
 
3
  from UI import create_interface
 
4
 
5
  def main():
6
- demo = create_interface()
7
  demo.launch()
8
 
9
  if __name__ == "__main__":
 
1
  # app.py
2
 
3
  from UI import create_interface
4
+ from interface import process_and_plot
5
 
6
  def main():
7
+ demo = create_interface(process_and_plot)
8
  demo.launch()
9
 
10
  if __name__ == "__main__":