Files
django-stubs/django-stubs/contrib/gis/db/backends/oracle/introspection.pyi
Marti Raudsepp 8f475fa0a6 Fill remaining missing hints with Any & disallow partial hints (#1206)
* Fill remaining missing hints with Any & disallow partial hints

* ModelFormatDict -> _ModelFormatDict

* Fixes

* Add __init__ return hints

* Add suppression
2022-10-31 14:33:59 +03:00

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: ...