Driver Code not working when running program, but runs fine when timed run is selected

When I run my program regularly, none of the buttons set to the motor ports work. When I run my timed run, however, both my autonomous and driver code works (after autonomous period ends). Does anyone have an idea on why this could be the case?

gameover code4.v5python (9.1 KB)
also this is the code it is in python

your initialization of the competition object is incorrect.
Here’s is the correction with the original commented out

# competition = Competition(driver_control(), autonomous())
competition = Competition(driver_control, autonomous)
1 Like

I’ve also been having this problem so I’m hoping someone knows how to fix it

Thank you, this worked