sbdchd / django-types

:doughnut: Type stubs for Django
MIT License
188 stars 62 forks source link

KT is a function, not an instance. #260

Closed john-parton closed 1 month ago

john-parton commented 1 month ago

KT shortcut is actually an alias for KeyTextTransform.from_lookup class method. Annotated classmethod and then assigned alias.

john-parton commented 1 month ago

Accidentally imported Self from typing and not typing_extensions. Fixed, squashed, force-pushed.

john-parton commented 1 month ago

See https://github.com/django/django/blob/a57596e443ecb67140e1a9fc0f0e87446b2d0174/django/db/models/fields/json.py#L409-L419 for motivation

sbdchd commented 1 month ago

Thanks!