Removed unnecessary StatAggregate.resolve_expression().

This method only calls the parent method, but without the for_save
argument. The parent class, Aggregate, already ignores the for_save
argument so there is no need for special handling.

Unnecessary since its introduction in e4cf8c8420.
This commit is contained in:
Jon Dufresne 2019-08-08 13:34:25 -07:00 committed by Mariusz Felisiak
parent 8d3519071e
commit 5b57798513
1 changed files with 0 additions and 3 deletions

View File

@ -15,9 +15,6 @@ class StatAggregate(Aggregate):
raise ValueError('Both y and x must be provided.') raise ValueError('Both y and x must be provided.')
super().__init__(y, x, output_field=output_field, filter=filter) super().__init__(y, x, output_field=output_field, filter=filter)
def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False):
return super().resolve_expression(query, allow_joins, reuse, summarize)
class Corr(StatAggregate): class Corr(StatAggregate):
function = 'CORR' function = 'CORR'