Created
December 21, 2022 22:04
-
-
Save jarshwah/1e683416d2ed2df28f254fc787d0d304 to your computer and use it in GitHub Desktop.
annotating your manager for useful type hints
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyModel(models.Model): | |
name = models.CharField() | |
objects: models.QuerySet["MyModel"] | |
MyModel.objects.filter().first() |
Author
jarshwah
commented
Dec 21, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment