Skip to content

Commit 856b528

Browse files
authored
Removed unnecessary tuple call in SQLInsertCompiler.
1 parent 1bb9bd9 commit 856b528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

django/db/models/sql/compiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1441,7 +1441,7 @@ def explain_query(self):
14411441

14421442
class SQLInsertCompiler(SQLCompiler):
14431443
returning_fields = None
1444-
returning_params = tuple()
1444+
returning_params = ()
14451445

14461446
def field_as_sql(self, field, val):
14471447
"""

0 commit comments

Comments
 (0)