(self)
| 447 | return query_set |
| 448 | |
| 449 | def list(self): |
| 450 | return list(map(lambda row: ParagraphSerializer(row).data, self.get_query_set())) |
| 451 | |
| 452 | def page(self, current_page, page_size): |
| 453 | query_set = self.get_query_set() |
nothing calls this directly
no test coverage detected