diff options
author | David Smith <39445562+smithdc1@users.noreply.github.com> | 2022-04-13 07:10:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-13 08:10:52 +0200 |
commit | 856b52880194ec533fc45a57107bc0fb3387e786 (patch) | |
tree | 58c62f57718ce392ab0ecb765a0e848a55d52df0 /django/db/models/sql/compiler.py | |
parent | 1bb9bd972424771246022bcf2c61e0eb87a0f337 (diff) | |
download | django-856b52880194ec533fc45a57107bc0fb3387e786.tar.gz |
Removed unnecessary tuple call in SQLInsertCompiler.
Diffstat (limited to 'django/db/models/sql/compiler.py')
-rw-r--r-- | django/db/models/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 7ab391fcb7..faa08e376d 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -1441,7 +1441,7 @@ class SQLCompiler: class SQLInsertCompiler(SQLCompiler): returning_fields = None - returning_params = tuple() + returning_params = () def field_as_sql(self, field, val): """ |