diff --git a/main_test.py b/main_test.py index 682b4eeb71ea051989c8ae1a7578e004ce96563e..2265a0ac755b55dd198878163e1657c59da6bfff 100644 --- a/main_test.py +++ b/main_test.py @@ -28,7 +28,7 @@ async def main(): # Makes 1 step only driving straight observation, reward, done, info = await env.step("accelerate,screen_on", 0.17) - print(observation) + print(observation) # Obeservation is an array with the following information: [speed, steering-angle, [length of all sensors (starting straight and then clockwise around the car)]] print(reward) print(done) @@ -41,4 +41,4 @@ async def main(): if __name__ == "__main__": nest_asyncio.apply() loop = asyncio.get_event_loop() - loop.run_until_complete(main()) \ No newline at end of file + loop.run_until_complete(main())