Calculate the last rows to maintain the max number of rows.
(max_rows: int)
| 142 | |
| 143 | |
| 144 | def calc_max_rows_last(max_rows: int) -> int: |
| 145 | """Calculate the last rows to maintain the max number of rows.""" |
| 146 | return max_rows // 2 |
| 147 | |
| 148 | |
| 149 | def format_timestamp(t): |
no outgoing calls
no test coverage detected
searching dependent graphs…