lllyasviel commited on
Commit
4d043e4
·
1 Parent(s): c44c3ed
Files changed (1) hide show
  1. webui.py +1 -1
webui.py CHANGED
@@ -9,7 +9,7 @@ def add_text(history, text):
9
 
10
 
11
  def add_file(history, file):
12
- history = history + [((file.name,), None)]
13
  return history
14
 
15
 
 
9
 
10
 
11
  def add_file(history, file):
12
+ history = history + [(('./outputs/a.png',), None)]
13
  return history
14
 
15