Skip to content

Commit 8bb703f

Browse files
committed
chore: fix formatting and line length issues
- Format test_response_renderer.py with black - Fix line length in config_wizard.py help text
1 parent d00d466 commit 8bb703f

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/basic_agent_chat_loop/components/config_wizard.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,10 @@ def _configure_features(self):
387387
self.config["features"]["claude_commands_enabled"] = self._prompt_bool(
388388
"Enable Claude slash commands (/template_name)?",
389389
default=current_claude_commands,
390-
help_text="Allows using prompt templates from ~/.prompts, ./.claude/commands, ~/.claude/commands",
390+
help_text=(
391+
"Allows using prompt templates from ~/.prompts, "
392+
"./.claude/commands, ~/.claude/commands"
393+
),
391394
)
392395

393396
def _configure_ui(self):

tests/unit/test_response_renderer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
Agent library handles all response rendering naturally.
55
"""
66

7-
87
from basic_agent_chat_loop.components.response_renderer import ResponseRenderer
98

109

0 commit comments

Comments
 (0)