CoolFace
Apppublic

s123hree/green-code-optimizer-a100

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
test_reset.py13 linesDownload Raw Back to root
1import asyncio2from server import reset_env3 4async def main():5    try:6        res = await reset_env()7        print("Success")8    except Exception as e:9        import traceback10        traceback.print_exc()11 12asyncio.run(main())13