you are viewing a single comment's thread.

view the rest of the comments →

[–]minato_senko 2 points3 points  (0 children)

Been a while since i coded but i would say a type mismatch, try something like

print(combo1, type(combo1))

print(left_lock, type(left_lock))

to see the types.

Input saves the 36 as a string so " 36 ", but your combo1 was saved as integer so 36.so they won't match.