summaryrefslogtreecommitdiff
path: root/python/testData/formatter/hangingIndentsInMultilineCallChainInParenthesis.py
blob: 4c8467b8105886828ca33a6750443bdf2c9045b8 (plain)
1
2
3
4
5
6
7
8
9
def get_queryset(self):
    return (
        super().get_queryset()
        .filter(user=self.request.user)
        .prefetch_related(
        'lines__oscar_line',
        'lines__oscar_line__product'
        )
    )