mirror of
https://github.com/django/django.git
synced 2025-10-29 08:36:09 +00:00
Removed unnecessary arguments in .get method calls
This commit is contained in:
@@ -1216,7 +1216,7 @@ class RawQuerySet(object):
|
||||
model_cls = deferred_class_factory(self.model, skip)
|
||||
else:
|
||||
model_cls = self.model
|
||||
fields = [self.model_fields.get(c, None) for c in self.columns]
|
||||
fields = [self.model_fields.get(c) for c in self.columns]
|
||||
converters = compiler.get_converters([
|
||||
f.get_col(f.model._meta.db_table) if f else None for f in fields
|
||||
])
|
||||
|
||||
Reference in New Issue
Block a user