Return the comment identified by `comment_id`, or |None| if not found.
(self, comment_id: int)
| 75 | return comment |
| 76 | |
| 77 | def get(self, comment_id: int) -> Comment | None: |
| 78 | """Return the comment identified by `comment_id`, or |None| if not found.""" |
| 79 | comment_elm = self._comments_elm.get_comment_by_id(comment_id) |
| 80 | return Comment(comment_elm, self._comments_part) if comment_elm is not None else None |
| 81 | |
| 82 | |
| 83 | class Comment(BlockItemContainer): |