Skip to content

Commit 51744e3

Browse files
committed
🔖 add types
1 parent 6525889 commit 51744e3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/general_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
from codeinterpreterapi import CodeInterpreterSession, File
44

55

6-
def test_codebox():
6+
def test_codebox() -> None:
77
session = CodeInterpreterSession()
88
assert run_sync(session), "Failed to run sync CodeInterpreterSession remotely"
99
assert asyncio.run(
1010
run_async(session)
1111
), "Failed to run async CodeInterpreterSession remotely"
1212

1313

14-
def test_localbox():
14+
def test_localbox() -> None:
1515
session = CodeInterpreterSession(local=True)
1616
assert run_sync(session), "Failed to run sync CodeInterpreterSession locally"
1717
assert asyncio.run(

0 commit comments

Comments
 (0)