Append COUNT property to params.
(params: list[EncodableT], count: int | None)
| 1489 | |
| 1490 | @staticmethod |
| 1491 | def _append_count(params: list[EncodableT], count: int | None): |
| 1492 | """Append COUNT property to params.""" |
| 1493 | if count is not None: |
| 1494 | params.extend(["COUNT", count]) |
| 1495 | |
| 1496 | @staticmethod |
| 1497 | def _append_timestamp(params: list[EncodableT], timestamp: int | None): |
no test coverage detected