Skip to content

Commit 4722caa

Browse files
committed
Remove unused variables.
1 parent db36a04 commit 4722caa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

litecli/packages/completion_engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def suggest_type(full_text, text_before_cursor):
8686

8787
def suggest_special(text):
8888
text = text.lstrip()
89-
cmd, mode, arg = parse_special_command(text)
89+
cmd, _, arg = parse_special_command(text)
9090

9191
if cmd == text:
9292
# Trying to complete the special command itself

litecli/packages/special/llm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def is_llm_command(command) -> bool:
292292
"""
293293
Is this an llm/ai command?
294294
"""
295-
cmd, mode, arg = parse_special_command(command)
295+
cmd, _, _ = parse_special_command(command)
296296
return cmd in ("\\llm", "\\ai", ".llm", ".ai")
297297

298298

0 commit comments

Comments
 (0)