mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-19 10:21:14 +08:00
* Fill remaining missing hints with Any & disallow partial hints * ModelFormatDict -> _ModelFormatDict * Fixes * Add __init__ return hints * Add suppression
13 lines
567 B
Python
13 lines
567 B
Python
from typing import Any
|
|
|
|
from django.db.backends.sqlite3.introspection import DatabaseIntrospection as DatabaseIntrospection
|
|
from django.db.backends.sqlite3.introspection import FlexibleFieldLookupDict as FlexibleFieldLookupDict
|
|
|
|
class GeoFlexibleFieldLookupDict(FlexibleFieldLookupDict):
|
|
base_data_types_reverse: Any = ...
|
|
|
|
class SpatiaLiteIntrospection(DatabaseIntrospection):
|
|
data_types_reverse: Any = ...
|
|
def get_geometry_type(self, table_name: Any, description: Any) -> Any: ...
|
|
def get_constraints(self, cursor: Any, table_name: Any) -> Any: ...
|