wasmdashai commited on
Commit
8e6f2e1
·
verified ·
1 Parent(s): b99ec57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -23,8 +23,9 @@ class OnnxModelConverter:
23
 
24
  def download_file(self,file_path):
25
  if not os.path.exists(file_path):
26
- with open(file_path, "w") as file:
27
- file.write("This is a test ONNX model.")
 
28
  return file_path
29
 
30
 
 
23
 
24
  def download_file(self,file_path):
25
  if not os.path.exists(file_path):
26
+ #with open(file_path, "w") as file:
27
+ #file.write("This is a test ONNX model.")
28
+ return None
29
  return file_path
30
 
31