We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6525889 commit 51744e3Copy full SHA for 51744e3
1 file changed
tests/general_test.py
@@ -3,15 +3,15 @@
3
from codeinterpreterapi import CodeInterpreterSession, File
4
5
6
-def test_codebox():
+def test_codebox() -> None:
7
session = CodeInterpreterSession()
8
assert run_sync(session), "Failed to run sync CodeInterpreterSession remotely"
9
assert asyncio.run(
10
run_async(session)
11
), "Failed to run async CodeInterpreterSession remotely"
12
13
14
-def test_localbox():
+def test_localbox() -> None:
15
session = CodeInterpreterSession(local=True)
16
assert run_sync(session), "Failed to run sync CodeInterpreterSession locally"
17
0 commit comments