()
| 8 | |
| 9 | |
| 10 | def post_commit() -> None: |
| 11 | backup_file_path = get_backup_file_path() |
| 12 | |
| 13 | # remove backup file if it exists |
| 14 | if backup_file_path.is_file(): |
| 15 | backup_file_path.unlink() |
| 16 | |
| 17 | |
| 18 | if __name__ == "__main__": |
no test coverage detected
searching dependent graphs…