1
0
mirror of https://github.com/django/django.git synced 2025-08-12 04:49:11 +00:00

Removed unnecessary tuple call in SQLInsertCompiler.

This commit is contained in:
David Smith 2022-04-13 07:10:52 +01:00 committed by GitHub
parent 1bb9bd9724
commit 856b528801
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1441,7 +1441,7 @@ class SQLCompiler:
class SQLInsertCompiler(SQLCompiler): class SQLInsertCompiler(SQLCompiler):
returning_fields = None returning_fields = None
returning_params = tuple() returning_params = ()
def field_as_sql(self, field, val): def field_as_sql(self, field, val):
""" """