(acc, log)
| 61 | dashes = ("-" * len(header)) |
| 62 | |
| 63 | def write_log(acc, log): |
| 64 | if log[8:8+7] == 'Release' or log[8:8+7] == 'release': |
| 65 | return acc |
| 66 | acc.append(log_entry(log)) |
| 67 | return acc |
| 68 | |
| 69 | actual_log = list(functools.reduce(write_log, |
| 70 | logs.splitlines(), |
nothing calls this directly
no test coverage detected
searching dependent graphs…