ifw-arz commited on
Commit
a8b82d2
1 Parent(s): 69d4eff

token_handling

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -17,6 +17,7 @@ from processing.barsplots_rootcauses import check_classification
17
  from processing.cloud_access import auto_download
18
 
19
  sprint_data_folder = "Messungen"
 
20
 
21
 
22
  def get_csv_files(data_folder):
@@ -148,7 +149,7 @@ def main():
148
  if __name__ == "__main__":
149
  main()
150
 
151
- seafile_token = os.getenv("seafile_token")
152
  t1 = threading.Thread(target=auto_download(seafile_token))
153
  t1.start()
154
 
 
17
  from processing.cloud_access import auto_download
18
 
19
  sprint_data_folder = "Messungen"
20
+ seafile_token = os.getenv("seafile_token")
21
 
22
 
23
  def get_csv_files(data_folder):
 
149
  if __name__ == "__main__":
150
  main()
151
 
152
+
153
  t1 = threading.Thread(target=auto_download(seafile_token))
154
  t1.start()
155