mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
* Fill remaining missing hints with Any & disallow partial hints * ModelFormatDict -> _ModelFormatDict * Fixes * Add __init__ return hints * Add suppression
9 lines
312 B
Python
9 lines
312 B
Python
from typing import Any
|
|
|
|
from django.db.backends.oracle.introspection import DatabaseIntrospection as DatabaseIntrospection
|
|
|
|
class OracleIntrospection(DatabaseIntrospection):
|
|
@property
|
|
def data_types_reverse(self) -> Any: ...
|
|
def get_geometry_type(self, table_name: Any, description: Any) -> Any: ...
|