Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import pandas as pd
2
  import time
3
- from zipfile import ZipFile
4
 
5
- with ZipFile('reverse_image_search.zip', 'r') as zip:
6
  # printing all the contents of the zip file
7
  # extracting all the files
8
  print('Extracting all the files now...')
 
1
  import pandas as pd
2
  import time
3
+ from zipfile import zipfile
4
 
5
+ with zipfile('reverse_image_search.zip', 'r') as zip:
6
  # printing all the contents of the zip file
7
  # extracting all the files
8
  print('Extracting all the files now...')