wasmdashai commited on
Commit
b7e36b2
·
verified ·
1 Parent(s): 50b1ced

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,8 +10,8 @@ class OnnxModelConverter:
10
  self.model = None
11
  def download_file(self,file_path):
12
  if not os.path.exists(file_path):
13
- with open(file_path, "w") as file:
14
- file.write("This is a test ONNX model.")
15
  return gr.File(file_path, label="Download ONNX File")
16
 
17
 
 
10
  self.model = None
11
  def download_file(self,file_path):
12
  if not os.path.exists(file_path):
13
+ with open(file_path, "w") as file:
14
+ file.write("This is a test ONNX model.")
15
  return gr.File(file_path, label="Download ONNX File")
16
 
17