elif( listb[0] == \"-test\"): run_all.set(\"testview\") listb.pop[0]
ERROR: Exception in Tkinter callback T
This error arises when you don't use brackets with pop operation. Write the code in this manner.
pop
listb.pop(0)
This is a valid python expression.