Files
django-stubs/django-stubs/db/backends/sqlite3/introspection.pyi
Maxim Kurnikov 8402e7c53e improve annotations in some places (#202)
* improve annotations in some places

* linting
2019-10-07 14:50:45 +03:00

14 lines
363 B
Python

from typing import Any, Optional
from django.db.backends.base.introspection import BaseDatabaseIntrospection
field_size_re: Any
def get_field_size(name: str) -> Optional[int]: ...
class FlexibleFieldLookupDict:
base_data_types_reverse: Any = ...
def __getitem__(self, key: str) -> Any: ...
class DatabaseIntrospection(BaseDatabaseIntrospection): ...