Spaces:
Running
Running
Update gradio_app.py
Browse files- 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(
|
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
|