svjack commited on
Commit
7729519
·
verified ·
1 Parent(s): 767e123

Update gradio_app.py

Browse files
Files changed (1) hide show
  1. gradio_app.py +2 -2
gradio_app.py CHANGED
@@ -21,11 +21,11 @@ def process_svg(uploaded_file):
21
  '''
22
  with open(path, "wb") as f:
23
  f.write(uploaded_file.read())
24
- '''
25
  shutil.copy2(uploaded_file.name, path)
 
26
 
27
  sys.setrecursionlimit(1500)
28
- success = animateLogo(path, targetPath)
29
 
30
  if success:
31
  return targetPath
 
21
  '''
22
  with open(path, "wb") as f:
23
  f.write(uploaded_file.read())
 
24
  shutil.copy2(uploaded_file.name, path)
25
+ '''
26
 
27
  sys.setrecursionlimit(1500)
28
+ success = animateLogo(uploaded_file.name, targetPath)
29
 
30
  if success:
31
  return targetPath