We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cdf5ba commit a094158Copy full SHA for a094158
1 file changed
restage.py
@@ -7,7 +7,7 @@
7
8
9
@app.local_entrypoint()
10
-def main():
+def restage():
11
print(f"Validating {version} on Modal volume...")
12
manifest = validate_staging.remote(branch=branch, version=version)
13
@@ -17,7 +17,5 @@ def main():
17
print(f" Cities: {manifest['totals']['cities']}")
18
19
print(f"\nUploading to HF staging...")
20
- result = upload_to_staging.remote(
21
- branch=branch, version=version, manifest=manifest
22
- )
+ result = upload_to_staging.remote(branch=branch, version=version, manifest=manifest)
23
print(result)
0 commit comments