chandrakalagowda commited on
Commit
c79e854
1 Parent(s): eb0324d

Update 1_reverse_video_search_engine.py

Browse files
Files changed (1) hide show
  1. 1_reverse_video_search_engine.py +3 -3
1_reverse_video_search_engine.py CHANGED
@@ -51,13 +51,13 @@
51
  # In[1]:
52
 
53
  import time
54
- from zipfile import zipfile
55
 
56
- with zipfile('reverse_video_search.zip', 'r') as zip:
57
  # printing all the contents of the zip file
58
  # extracting all the files
59
  print('Extracting all the files now...')
60
- zip.extractall()
61
  print('Done!')
62
 
63
 
 
51
  # In[1]:
52
 
53
  import time
54
+ from zipfile import ZipFile
55
 
56
+ with ZipFile('reverse_video_search.zip', 'r') as zips:
57
  # printing all the contents of the zip file
58
  # extracting all the files
59
  print('Extracting all the files now...')
60
+ zips.extractall()
61
  print('Done!')
62
 
63