Your id used Integer, because of that your Usr.id is defined as an Integer, and because you are trying to compare it to a string.
id
Usr.id
Snippet:
Usr.id == int("test") #<--- Use int
Usr.id == int("test")