Skip to content
410 changes: 0 additions & 410 deletions code_review_graph/analysis 2.py

This file was deleted.

2 changes: 0 additions & 2 deletions code_review_graph/changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def parse_git_diff_ranges(
errors="replace",
cwd=repo_root,
timeout=_GIT_TIMEOUT,
stdin=subprocess.DEVNULL,
)
if result.returncode != 0:
logger.warning("git diff failed (rc=%d): %s", result.returncode, result.stderr[:200])
Expand Down Expand Up @@ -100,7 +99,6 @@ def parse_svn_diff_ranges(
errors="replace",
cwd=repo_root,
timeout=_GIT_TIMEOUT,
stdin=subprocess.DEVNULL,
)
if result.returncode != 0:
logger.warning("svn diff failed (rc=%d): %s", result.returncode, result.stderr[:200])
Expand Down
8 changes: 4 additions & 4 deletions code_review_graph/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,12 +229,12 @@ def _handle_init(args: argparse.Namespace) -> None:
from .skills import (
PLATFORMS,
generate_skills,
install_gemini_cli_hooks,
install_gemini_cli_skills,
inject_claude_md,
inject_platform_instructions,
install_codex_hooks,
install_cursor_hooks,
install_gemini_cli_hooks,
install_gemini_cli_skills,
install_git_hook,
install_hooks,
install_opencode_plugin,
Expand Down Expand Up @@ -1029,13 +1029,13 @@ def main() -> None:

serve_dir = html_path.parent
port = 8765
handler = functools.partial(
http_handler = functools.partial(
http.server.SimpleHTTPRequestHandler,
directory=str(serve_dir),
)
print(f"Serving at http://localhost:{port}/graph.html")
print("Press Ctrl+C to stop.")
with http.server.HTTPServer(("localhost", port), handler) as httpd:
with http.server.HTTPServer(("localhost", port), http_handler) as httpd:
try:
httpd.serve_forever()
except KeyboardInterrupt:
Expand Down
303 changes: 0 additions & 303 deletions code_review_graph/enrich 2.py

This file was deleted.

Loading
Loading