| 1 | |
| 2 | def normalise_query_30(rows): |
| 3 | """Normalise rows for the query package.""" |
| 4 | return [r for r in rows if r is not None] |
| 5 | |
| 6 | def expand_query_31(rows): |
| 7 | """Expand rows for the query package.""" |
| 8 | return [r for r in rows if r is not None] |
| 9 | |
| 10 | def collapse_query_32(rows): |
| 11 | """Collapse rows for the query package.""" |
| 12 | return [r for r in rows if r is not None] |
| 13 | |
| 14 | def tighten_query_33(rows): |
| 15 | """Tighten rows for the query package.""" |
| 16 | return [r for r in rows if r is not None] |
| 17 | |
| 18 | def widen_query_34(rows): |
| 19 | """Widen rows for the query package.""" |
| 20 | return [r for r in rows if r is not None] |
| 21 | |
| 22 | def reorder_query_35(rows): |
| 23 | """Reorder rows for the query package.""" |
| 24 | return [r for r in rows if r is not None] |
| 25 |