diff options
author | Tim Graham <timograham@gmail.com> | 2014-12-30 11:25:48 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2014-12-30 11:53:59 -0500 |
commit | 8082c75d188e395c973f52bfdf5d547c741edd03 (patch) | |
tree | cdf6e46641b433db32bf71b93aa89db10f54e430 /django/db/backends/postgresql_psycopg2/operations.py | |
parent | d7fc6eb8ca67a6a628e8c7ce669731cf563606e7 (diff) | |
download | django-8082c75d188e395c973f52bfdf5d547c741edd03.tar.gz |
Removed db.backends methods which only call super().
Diffstat (limited to 'django/db/backends/postgresql_psycopg2/operations.py')
-rw-r--r-- | django/db/backends/postgresql_psycopg2/operations.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/backends/postgresql_psycopg2/operations.py b/django/db/backends/postgresql_psycopg2/operations.py index 3447bfe682..9d5b10d01a 100644 --- a/django/db/backends/postgresql_psycopg2/operations.py +++ b/django/db/backends/postgresql_psycopg2/operations.py @@ -5,8 +5,6 @@ from django.db.backends import BaseDatabaseOperations class DatabaseOperations(BaseDatabaseOperations): - def __init__(self, connection): - super(DatabaseOperations, self).__init__(connection) def date_extract_sql(self, lookup_type, field_name): # http://www.postgresql.org/docs/current/static/functions-datetime.html#FUNCTIONS-DATETIME-EXTRACT |