(value: float)
| 26 | |
| 27 | |
| 28 | def format_float(value: float) -> str: |
| 29 | if value < 100.0 and value > 99.99: |
| 30 | value = 99.99 |
| 31 | return "%6.2f" % value |
| 32 | |
| 33 | |
| 34 | def get_changes(changes_file: str) -> Tuple[list[Change], list[Change]]: |
no outgoing calls
no test coverage detected