https://mypy.readthedocs.io/en/stable/duck_type_compatibility.html > `int` is duck type compatible with `float` No it's not: ```py f: float = 1 f.is_integer() ```