mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-05-22 15:44:39 +02:00
Remove dead code from living files
Delete unused CommandResult class from commands/base.py and unused format_dm_response method from responder.py. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
1f66faff0c
commit
94d27a634e
2 changed files with 0 additions and 33 deletions
|
|
@ -50,23 +50,3 @@ class CommandHandler(ABC):
|
|||
Response string to send back
|
||||
"""
|
||||
pass
|
||||
|
||||
|
||||
class CommandResult:
|
||||
"""Result from command execution."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
response: str,
|
||||
success: bool = True,
|
||||
suppress_history: bool = True,
|
||||
):
|
||||
"""
|
||||
Args:
|
||||
response: Text response to send
|
||||
success: Whether command succeeded
|
||||
suppress_history: If True, don't add to conversation history
|
||||
"""
|
||||
self.response = response
|
||||
self.success = success
|
||||
self.suppress_history = suppress_history
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue