(file_path: str)
| 1086 | click.echo(f" [!] Scan error: {exc}") |
| 1087 | click.echo(_DIVIDER + "\n") |
| 1088 | return |
| 1089 | |
| 1090 | new_fps = {iss.get_fingerprint(): iss for iss in new_issues} |
| 1091 | prev_fps = _state["prev_fps"] |
| 1092 | |
| 1093 | appeared = [iss for fp, iss in new_fps.items() if fp not in prev_fps] |
| 1094 | resolved = [iss for fp, iss in prev_fps.items() if fp not in new_fps] |
| 1095 | |
| 1096 | if not appeared and not resolved: |
| 1097 | click.echo(" No change in findings.") |
| 1098 | else: |