def __eq__(self, other): return False if type(self) != type(other) else IntEnum.__eq__(self, other)
def __eq__(self: "MorphosyntacticFeature", other: "MorphosyntacticFeature") -> bool: return False if type(self) != type(other) else IntEnum.__eq__( self, other)