Skip to content

Commit 2017338

Browse files
Formatting
1 parent 70817fa commit 2017338

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

python/e2e/test_session.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,9 @@ async def test_should_abort_a_session(self, ctx: E2ETestContext):
267267

268268
# Send a message that will trigger a long-running shell command
269269
await session.send(
270-
{"prompt": "run the shell command 'sleep 100' (note this works on both bash and PowerShell)"}
270+
{
271+
"prompt": "run the shell command 'sleep 100' (note this works on both bash and PowerShell)"
272+
}
271273
)
272274

273275
# Wait for the tool to start executing

python/e2e/testharness/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,10 @@
44
from .helper import get_final_assistant_message, get_next_event_of_type
55
from .proxy import CapiProxy
66

7-
__all__ = ["CLI_PATH", "E2ETestContext", "CapiProxy", "get_final_assistant_message", "get_next_event_of_type"]
7+
__all__ = [
8+
"CLI_PATH",
9+
"E2ETestContext",
10+
"CapiProxy",
11+
"get_final_assistant_message",
12+
"get_next_event_of_type",
13+
]

0 commit comments

Comments
 (0)