Spaces:
Runtime error
Runtime error
Update app_t.py
Browse files
app_t.py
CHANGED
|
@@ -4,11 +4,11 @@ from os import path
|
|
| 4 |
from zipfile import ZipFile
|
| 5 |
from shutil import make_archive
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
if path.exists(filename):
|
| 13 |
print ("yes zip location exists.")
|
| 14 |
src=path.realpath(filename)
|
|
|
|
| 4 |
from zipfile import ZipFile
|
| 5 |
from shutil import make_archive
|
| 6 |
|
| 7 |
+
filename = "clipseg-master.zip"
|
| 8 |
+
extract_dir = "clipseg"
|
| 9 |
+
archive_format = "zip"
|
| 10 |
+
|
| 11 |
+
def main():
|
| 12 |
if path.exists(filename):
|
| 13 |
print ("yes zip location exists.")
|
| 14 |
src=path.realpath(filename)
|