MCPcopy Create free account
hub / github.com/ParzivalHack/PySpector / _schedule

Function _schedule

src/pyspector/cli.py:1088–1095  ·  view source on GitHub ↗
(file_path: str)

Source from the content-addressed store, hash-verified

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:

Callers 1

_dispatchMethod · 0.85

Calls 1

startMethod · 0.80

Tested by

no test coverage detected