File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
django-stubs/db/backends/base Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ from django.db.backends.base.operations import BaseDatabaseOperations
1212from django .db .backends .base .schema import BaseDatabaseSchemaEditor
1313from django .db .backends .base .validation import BaseDatabaseValidation
1414from django .db .backends .utils import CursorDebugWrapper , CursorWrapper
15+ from django .db .transaction import Atomic
1516from django .utils .functional import cached_property
1617from typing_extensions import Self , TypeAlias
1718
@@ -62,6 +63,7 @@ class BaseDatabaseWrapper:
6263 ops : BaseDatabaseOperations
6364 validation : BaseDatabaseValidation
6465 operators : MutableMapping [str , str ]
66+ atomic_blocks : list [Atomic ]
6567 def __init__ (self , settings_dict : dict [str , Any ], alias : str = ...) -> None : ...
6668 def ensure_timezone (self ) -> bool : ...
6769 @cached_property
You can’t perform that action at this time.
0 commit comments