The await command tells your robot:
“Wait until this job is finished, then keep going!”

The await command tells your robot:
“Wait until this job is finished, then keep going!”

Without "await", the robot might rush ahead and get confused!
You can only use "await" inside an "async" function.
async def main(): await motor.run_for_time(port.A, 1000, 1000)