mirror of
https://github.com/django/django.git
synced 2025-09-07 03:00:43 +00:00
Removed unneeded __init__() in PostgreSQL DatabaseWrapper.
This commit is contained in:
parent
1b86088f6f
commit
15f2d87ceb
1 changed files with 2 additions and 4 deletions
|
@ -139,10 +139,8 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
|||
features_class = DatabaseFeatures
|
||||
introspection_class = DatabaseIntrospection
|
||||
ops_class = DatabaseOperations
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
super().__init__(*args, **kwargs)
|
||||
self._named_cursor_idx = 0
|
||||
# PostgreSQL backend-specific attributes.
|
||||
_named_cursor_idx = 0
|
||||
|
||||
def get_connection_params(self):
|
||||
settings_dict = self.settings_dict
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue