Removed unnecessary string formatting of strings.

This commit is contained in:
Jon Dufresne 2019-01-14 18:04:00 -08:00 committed by Tim Graham
parent 885cb0d390
commit ad7aa02c1d
3 changed files with 4 additions and 4 deletions

View file

@ -807,7 +807,7 @@ class Ref(Expression):
return self
def as_sql(self, compiler, connection):
return "%s" % connection.ops.quote_name(self.refs), []
return connection.ops.quote_name(self.refs), []
def get_group_by_cols(self):
return [self]