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:
Ubuntu 2026-02-24 00:27:49 +00:00
commit 94d27a634e
2 changed files with 0 additions and 33 deletions

View file

@ -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