Skip to content

Commit

Permalink
Add BaseDatabaseWrapper.operations
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz committed Aug 23, 2022
1 parent 3ac34f1 commit 2165eaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django-stubs/db/backends/base/base.pyi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from contextlib import contextmanager
from datetime import tzinfo
from typing import Any, Callable, Dict, Generator, Iterator, List, Optional, Set, Tuple, Type, TypeVar
from typing import Any, Callable, Dict, Generator, Iterator, List, MutableMapping, Optional, Set, Tuple, Type, TypeVar

from django.db.backends.base.client import BaseDatabaseClient
from django.db.backends.base.creation import BaseDatabaseCreation
Expand Down Expand Up @@ -53,6 +53,7 @@ class BaseDatabaseWrapper:
introspection: BaseDatabaseIntrospection = ...
ops: BaseDatabaseOperations = ...
validation: BaseDatabaseValidation = ...
operators: MutableMapping[str, str] = ...
def __init__(self, settings_dict: Dict[str, Any], alias: str = ...) -> None: ...
def ensure_timezone(self) -> bool: ...
@property
Expand Down

0 comments on commit 2165eaf

Please sign in to comment.