Daniel Gil-U Fuhge commited on
Commit
0caa347
1 Parent(s): 3180cb0

add target path

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -20,7 +20,7 @@ if uploaded_file is not None:
20
  f.write(uploaded_file.getbuffer())
21
  st.success("Saved File")
22
  sys.setrecursionlimit(1500)
23
- animateLogo(path)
24
  with open(path, "rb") as file:
25
  st.download_button('Download animated SVG', data=file, file_name=uploaded_file.name[:-3]+"_animated.svg")
26
 
 
20
  f.write(uploaded_file.getbuffer())
21
  st.success("Saved File")
22
  sys.setrecursionlimit(1500)
23
+ animateLogo(path, targetPath)
24
  with open(path, "rb") as file:
25
  st.download_button('Download animated SVG', data=file, file_name=uploaded_file.name[:-3]+"_animated.svg")
26