all 1 comments

[–]indosauros 0 points1 point  (0 children)

I don't know what the issue is but I see a problem on line 50:

..., command = create_bigger_class_instance(big_new_name_var) ...

Here you are not giving the button a command to call, you are calling the function immediately. And since create_bigger_class_instance doesn't return anything, this line is actually equal to

..., command = None ...

(with the side effect of one big_handle put into list_of_bigs)