How can we provide a default value to a variable with type `StrictBool` in a way that is accepted by MyPy? ```py from pydantic import BaseModel class Flags(BaseModel): pretend: StrictBool = False # MyPy does not like this ```