1
Fork 0
mirror of https://github.com/RGBCube/VReplBot synced 2025-05-31 13:18:12 +00:00
This commit is contained in:
RGBCube 2023-02-03 23:13:30 +03:00
parent 369f44aedd
commit fff50afff9

View file

@ -51,7 +51,7 @@ class Playground(
data = { "code": code },
) as response:
body = json.loads(await response.text())
print(body, type(body))
return body["ok"], body["output"]
async def test_code(self, code: str) -> tuple[bool, str]: