Uploading zip file through file loader

What I’m trying to do:
is to upload a zip file using file loader but getting this error
image

Here is my python code:

from zipfile import ZipFile
import anvil.media

@anvil.server.callable
def unzip(a):
     with ZipFile(a, 'r') as zip:
        zip.extractall()

Clone link:
https://anvil.works/build#clone:MOMROK6DF7YCGUSM=HL7UHR3CB6ZYCE3GVOXOWXUL

A post was merged into an existing topic: TypeError: ‘module’ object is not callable