You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CASE custom_unannotated_manager_select_related_returns_proper_queryset]
from django.db import models
class MyManager(models.Manager):
pass
class User(models.Model):
objects = MyManager()
reveal_type(User.objects) # E: Revealed type is 'main.MyManager[main.User]'
reveal_type(User.objects.select_related()) # E: Revealed type is 'django.db.models.query.QuerySet[main.User*, main.User*]'
[/CASE]
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: