bot/code_review_bot/tasks/clang_tidy.py [156:166]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            notes="\n".join(
                [
                    ISSUE_NOTE_MARKDOWN.format(
                        message=n.message,
                        location=f"{n.path}:{n.line}:{n.column}",
                        body=n.body,
                    )
                    for n in self.notes
                ]
            ),
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



bot/code_review_bot/tasks/clang_tidy_external.py [95:105]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            notes="\n".join(
                [
                    ISSUE_NOTE_MARKDOWN.format(
                        message=n.message,
                        location=f"{n.path}:{n.line}:{n.column}",
                        body=n.body,
                    )
                    for n in self.notes
                ]
            ),
        )
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



