| 1 | |
| 2 | def normalise_format_40(rows): |
| 3 | """Normalise rows for the format package.""" |
| 4 | return [r for r in rows if r is not None] |
| 5 | |
| 6 | def expand_format_41(rows): |
| 7 | """Expand rows for the format package.""" |
| 8 | return [r for r in rows if r is not None] |
| 9 | |
| 10 | def collapse_format_42(rows): |
| 11 | """Collapse rows for the format package.""" |
| 12 | return [r for r in rows if r is not None] |
| 13 | |
| 14 | def tighten_format_43(rows): |
| 15 | """Tighten rows for the format package.""" |
| 16 | return [r for r in rows if r is not None] |
| 17 | |
| 18 | def widen_format_44(rows): |
| 19 | """Widen rows for the format package.""" |
| 20 | return [r for r in rows if r is not None] |
| 21 | |
| 22 | def reorder_format_45(rows): |
| 23 | """Reorder rows for the format package.""" |
| 24 | return [r for r in rows if r is not None] |
| 25 |