Daniel Gil-U Fuhge commited on
Commit
217b3d5
1 Parent(s): 3ffbd28

update path

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,6 +12,7 @@ if uploaded_file is not None:
12
  with open(os.path.join("tempDir",uploaded_file.name),"wb") as f:
13
  f.write(uploaded_file.getbuffer())
14
  st.success("Saved File")
15
- animate_logo(os.path.join('tempDir', uploaded_file.name))
 
16
  st.download_button('Download animated SVG', os.path.join('tempDir', uploaded_file.name))
17
 
 
12
  with open(os.path.join("tempDir",uploaded_file.name),"wb") as f:
13
  f.write(uploaded_file.getbuffer())
14
  st.success("Saved File")
15
+ path = os.path.join('tempDir', uploaded_file.name)
16
+ animate_logo(path)
17
  st.download_button('Download animated SVG', os.path.join('tempDir', uploaded_file.name))
18