From 856b52880194ec533fc45a57107bc0fb3387e786 Mon Sep 17 00:00:00 2001 From: David Smith <39445562+smithdc1@users.noreply.github.com> Date: Wed, 13 Apr 2022 07:10:52 +0100 Subject: [PATCH] Removed unnecessary tuple call in SQLInsertCompiler. --- django/db/models/sql/compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): """