diff options
Diffstat (limited to 'django/db/backends/postgresql/compiler.py')
| -rw-r--r-- | django/db/backends/postgresql/compiler.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/compiler.py b/django/db/backends/postgresql/compiler.py index fcd7faaf35..81d291cf36 100644 --- a/django/db/backends/postgresql/compiler.py +++ b/django/db/backends/postgresql/compiler.py @@ -1,10 +1,10 @@ -from django.db.models.sql.compiler import ( +from django.db.models.sql.compiler import ( # isort:skip SQLAggregateCompiler, SQLCompiler as BaseSQLCompiler, SQLDeleteCompiler, + SQLInsertCompiler as BaseSQLInsertCompiler, + SQLUpdateCompiler, ) -from django.db.models.sql.compiler import SQLInsertCompiler as BaseSQLInsertCompiler -from django.db.models.sql.compiler import SQLUpdateCompiler __all__ = [ "SQLAggregateCompiler", |
