def match(self, subject):
        if not self.ctx.negate and not isinstance(subject, bool):
            return False, ['subject is not a bool type']

        return subject is False, []