Return the DOM id for a message timestamp footer.
(message_id: str)
| 182 | |
| 183 | |
| 184 | def _message_timestamp_footer_id(message_id: str) -> str: |
| 185 | """Return the DOM id for a message timestamp footer.""" |
| 186 | return f"{message_id}-timestamp-footer" |
| 187 | |
| 188 | |
| 189 | def _read_text_file_expanding_user(path_arg: str) -> tuple[Path, str]: |
no outgoing calls
searching dependent graphs…