Here's an example
import wtforms
isinstance(wtforms.StringField, wtforms.Field)
Why isinstance returns False? If wtforms.StringField is inherited from the wtforms.Field, because in this case should return isinstanse True. Why it returns False? How to fix this?