Spaces:
Running
Running
2410191349
Browse files
app.py
CHANGED
@@ -68,7 +68,7 @@ async def sb3(req_data: TextRequest):
|
|
68 |
if processing: return ''
|
69 |
processing = True
|
70 |
data = json.loads(req_data.text)
|
71 |
-
with zipfile.ZipFile(Path('public').joinpath('
|
72 |
with template_zip.open('project.json') as f:
|
73 |
project = json.loads(f.read().decode('utf-8'))
|
74 |
|
|
|
68 |
if processing: return ''
|
69 |
processing = True
|
70 |
data = json.loads(req_data.text)
|
71 |
+
with zipfile.ZipFile(Path('public').joinpath('mmp4.zip').resolve(), 'r') as template_zip:
|
72 |
with template_zip.open('project.json') as f:
|
73 |
project = json.loads(f.read().decode('utf-8'))
|
74 |
|