broadfield-dev commited on
Commit
98cdf49
·
verified ·
1 Parent(s): 4bc0c43

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ def get_gif_info(gif_file):
15
  frames += 1
16
  except EOFError:
17
  img.seek(0) # Reset to first frame
18
- return width, height, frames + 1
19
  except Exception as e:
20
  return None, None, None, f"Error: {str(e)}"
21
 
 
15
  frames += 1
16
  except EOFError:
17
  img.seek(0) # Reset to first frame
18
+ return width, height, frames + 1, "Success"
19
  except Exception as e:
20
  return None, None, None, f"Error: {str(e)}"
21