add missing return statement

This commit is contained in:
Laura Klünder 2019-12-21 17:40:53 +01:00
parent 2ec0f63894
commit c50f74e02e

View file

@ -909,6 +909,7 @@ class QuerySetWrapper(BaseQueryWrapper):
result.extend((2*fact, int(val[1:])*fact))
else:
result.append(val * fact)
return tuple(result)
def _get_cached_result(self):
"""