Skip to content

Commit d794146

Browse files
Fix import sort order after rename
Ruff isort flagged test_bot.py because 'beeperclaw' sorts differently than 'codebeep' in the import block.
1 parent 6d24b64 commit d794146

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

tests/test_bot.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,13 @@
1212

1313
import beeperclaw.bot as bot_module
1414
from beeperclaw.bot import BeeperClawBot
15-
from beeperclaw.commands import AbortCommand, BuildCommand, CommandContext, PlanCommand, StatusCommand
15+
from beeperclaw.commands import (
16+
AbortCommand,
17+
BuildCommand,
18+
CommandContext,
19+
PlanCommand,
20+
StatusCommand,
21+
)
1622
from beeperclaw.config import Config
1723
from beeperclaw.opencode_client import Session, SessionStatus
1824

0 commit comments

Comments
 (0)