We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5349e22 commit c00d920Copy full SHA for c00d920
gemini-cli.py
@@ -82,6 +82,8 @@ def run_tool(args):
82
if args.debug:
83
print(f"DEBUG: gemini_token: {gemini_token}")
84
print(f"DEBUG: len(gemini_token): {len(gemini_token)}")
85
+ print(f"DEBUG: gemini_token is None: {gemini_token is None}")
86
+ print(f"DEBUG: (39 <= len(gemini_token) <= 40): {(39 <= len(gemini_token) <= 40)}")
87
sys.exit(2)
88
89
if '\n' in gemini_token:
0 commit comments