Skip to content

Commit 8f2b1c9

Browse files
committed
format
1 parent 870581c commit 8f2b1c9

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

js/src/messaging.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ export class Result {
145145

146146
readonly raw: RawData
147147

148-
constructor(rawData: RawData, public readonly isMainResult: boolean) {
148+
constructor(
149+
rawData: RawData,
150+
public readonly isMainResult: boolean
151+
) {
149152
const data = { ...rawData }
150153
delete data['type']
151154
delete data['is_main_result']

python/tests/async/test_async_contexts.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ async def test_restart_context(async_sandbox: AsyncSandbox):
3636
context = await async_sandbox.create_code_context()
3737

3838
await async_sandbox.restart_code_context(context.id)
39-

python/tests/sync/test_contexts.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,3 @@ def test_restart_context(sandbox: Sandbox):
3636
context = sandbox.create_code_context()
3737

3838
sandbox.restart_code_context(context.id)
39-

0 commit comments

Comments
 (0)