liesdillen commited on
Commit
7422403
1 Parent(s): 1d2dbc8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -26,6 +26,8 @@ def process_csv(file):
26
  if file is None:
27
  gr.Warning("No file uploaded")
28
 
 
 
29
  # Read and prep accelerometer data
30
  with open(file, 'r', newline='') as csvfile:
31
  csv_reader = csv.reader(csvfile)
 
26
  if file is None:
27
  gr.Warning("No file uploaded")
28
 
29
+ acc_data = []
30
+
31
  # Read and prep accelerometer data
32
  with open(file, 'r', newline='') as csvfile:
33
  csv_reader = csv.reader(csvfile)