def _write_comments()

in osci/datalake/reports/excel/osci_change.py [0:0]


    def _write_comments(self, start_from: Position = Position(3, 9)):
        row = start_from.row
        self.worksheet.write_rich_string(row, start_from.col,
                                         self.superscript_format, NUMBER_SUPERSCRIPT(1),
                                         ' Active Contributors are those who authored 10 '
                                         'or more pushes in the time period')
        row += 1
        self.worksheet.write_rich_string(row, start_from.col,
                                         self.superscript_format, NUMBER_SUPERSCRIPT(2),
                                         ' Total Community counts those who authored 1 '
                                         'or more pushes in the time period')
        row += 1
        self.worksheet.write_rich_string(row, start_from.col,
                                         self.superscript_format, STAR_STAR_SUPERSCRIPT,
                                         ' Changes are relative to the metrics at the end of the previous month')
        row += 2
        self.worksheet.write(row, start_from.col,
                             f'The top {self.top_size} is calculated using the Active Contributors metric')
        row += 1
        self.worksheet.write(row, start_from.col,
                             'If two companies have equal Active Contributors, '
                             'their relative positions are determined by Total Community')