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
9 lines
277 B
Python
9 lines
277 B
Python
from django.db.backends.oracle.base import DatabaseWrapper as OracleDatabaseWrapper
|
|
from typing import Any
|
|
|
|
class DatabaseWrapper(OracleDatabaseWrapper):
|
|
SchemaEditorClass: Any = ...
|
|
features_class: Any = ...
|
|
introspection_class: Any = ...
|
|
ops_class: Any = ...
|