Append ALIGN property to params.
(params: list[EncodableT], align: int | str | None)
| 1501 | |
| 1502 | @staticmethod |
| 1503 | def _append_align(params: list[EncodableT], align: int | str | None): |
| 1504 | """Append ALIGN property to params.""" |
| 1505 | if align is not None: |
| 1506 | params.extend(["ALIGN", align]) |
| 1507 | |
| 1508 | @staticmethod |
| 1509 | def _append_aggregation( |
no test coverage detected