oxkitsune commited on
Commit
0fde623
·
1 Parent(s): 157bcb9

os.path.exists

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ def run_rerun(path_to_video):
91
  yield stream.read()
92
 
93
  # clean up
94
- if os.exists(path_to_video):
95
  os.remove(path_to_video)
96
 
97
 
 
91
  yield stream.read()
92
 
93
  # clean up
94
+ if os.path.exists(path_to_video):
95
  os.remove(path_to_video)
96
 
97