gitarsenal-cli 1.5.5 → 1.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/python/__pycache__/credentials_manager.cpython-313.pyc +0 -0
- package/python/__pycache__/fetch_modal_tokens.cpython-313.pyc +0 -0
- package/python/fetch_modal_tokens.py +0 -1
- package/python/fix_modal_token.py +2 -2
- package/python/fix_modal_token_advanced.py +1 -1
- package/python/test_modalSandboxScript.py +26 -1489
- package/install.sh +0 -30
- package/python/modal_logs_patch.py +0 -86
package/package.json
CHANGED
Binary file
|
Binary file
|
@@ -51,12 +51,12 @@ try:
|
|
51
51
|
print(f"✅ Using tokens from proxy server or defaults")
|
52
52
|
except (ImportError, ValueError) as e:
|
53
53
|
# If the module is not available or tokens are invalid, use hardcoded tokens
|
54
|
-
print(f"⚠️ Using default tokens")
|
54
|
+
# print(f"⚠️ Using default tokens")
|
55
55
|
|
56
56
|
print("🔧 Fixing Modal token (basic implementation)...")
|
57
57
|
|
58
58
|
# Set environment variables
|
59
|
-
os.environ["MODAL_TOKEN_ID"] = TOKEN_ID
|
59
|
+
# os.environ["MODAL_TOKEN_ID"] = TOKEN_ID
|
60
60
|
os.environ["MODAL_TOKEN_SECRET"] = TOKEN_SECRET
|
61
61
|
print(f"✅ Set MODAL_TOKEN_ID and MODAL_TOKEN_SECRET environment variables")
|
62
62
|
|
@@ -27,7 +27,7 @@ try:
|
|
27
27
|
# print(f"✅ Using tokens from proxy server or defaults")
|
28
28
|
except ImportError:
|
29
29
|
# If the module is not available, use hardcoded tokens
|
30
|
-
print(f"⚠️ Using default tokens")
|
30
|
+
# print(f"⚠️ Using default tokens")
|
31
31
|
|
32
32
|
# print("🔧 Advanced Modal Token Fixer")
|
33
33
|
|