# Bug report ## What's wrong The `Serializer.validators`property has the type > Type of "self.validators" is "list[((Any) -> None) | ContextValidator[Any]]" This is the result of `reveal_type(self.validators)` on an instance of `ModelSerializer`. I don't see it explicitly defined in `serializers.pyi` so I am not sure where exactly it is coming from. When evaluating the elements of the list against `UniqueTogetherValidator` mypy reports that the condition always returns `False`. None of the Unique... validators are a type that is mentioned above so that is my assumption why that is. <!-- Describe what is not working. Please, attach a traceback. We would also appreciate a failing test case. That is EXTREMELY helpful! --> ## How is that should be The type for the `validators` property should include the `Unique...` validators (at least for `ModelSerializer`). ## System information - OS: - `python` version: 3.122 - `django` version: 4.2.11 - `mypy` version: 1.8.0 - `django-stubs` version: 4.2.7