Skip to content

Commit f2974d9

Browse files
authored
Merge pull request #8 from Spchdt/new-actions
Fix lint
2 parents 281ddfe + 3f3e4ca commit f2974d9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/actions/client/echo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ async def execute(
2626
content_queue: asyncio.Queue[dict[str, Any]],
2727
) -> None:
2828
context_str = self.to_context_str(frame.payload)
29-
await content_queue.put({"type": "text", "text": context_str})
29+
await content_queue.put({"type": "text", "text": context_str})

tests/test_actions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import asyncio
22

33
import pytest
4-
from src.actions.client.echo import EchoActionHandler
54

65
from src.actions import (
76
get_all_client_actions,
@@ -10,6 +9,7 @@
109
get_client_handler,
1110
get_server_event_emitter,
1211
)
12+
from src.actions.client.echo import EchoActionHandler
1313
from src.actions.server.set_timer import SetTimerEmitter
1414
from src.engine.connection_context import ConnectionContext
1515
from src.pipelines.action import ActionPipeline

0 commit comments

Comments
 (0)