mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 22:11:54 +08:00
* adding missing db.backends typings and updated test * added missing stubs * reformatted files * removed contrib.postgres.forms * fixed test
8 lines
346 B
Python
8 lines
346 B
Python
from django.db.models.query_utils import DeferredAttribute
|
|
from typing import Any, Optional
|
|
|
|
class SpatialProxy(DeferredAttribute):
|
|
def __init__(self, klass: Any, field: Any, load_func: Optional[Any] = ...) -> None: ...
|
|
def __get__(self, instance: Any, cls: Optional[Any] = ...): ...
|
|
def __set__(self, instance: Any, value: Any): ...
|