Append LATEST property to params.
(params: list[EncodableT], latest: bool | None)
| 1556 | |
| 1557 | @staticmethod |
| 1558 | def _append_latest(params: list[EncodableT], latest: bool | None): |
| 1559 | """Append LATEST property to params.""" |
| 1560 | if latest: |
| 1561 | params.append("LATEST") |
| 1562 | |
| 1563 | @staticmethod |
| 1564 | def _append_bucket_timestamp( |
no test coverage detected