MCPcopy Create free account
hub / github.com/bitsandbytes-foundation/bitsandbytes / cmd_show

Function cmd_show

agents/query_issues.py:486–499  ·  view source on GitHub ↗

Show full detail for one or more issues.

(args, data)

Source from the content-addressed store, hash-verified

484
485
486def cmd_show(args, data):
487 """Show full detail for one or more issues."""
488 issues = all_issues(data)
489 issue_map = {i["number"]: i for i in issues}
490
491 numbers = args.numbers
492 for idx, number in enumerate(numbers):
493 target = issue_map.get(number)
494 if not target:
495 print(f"Issue #{number} not found.", file=sys.stderr)
496 continue
497 if idx > 0:
498 print("\n" + "=" * 72 + "\n")
499 print(format_detail(target, brief=args.brief))
500
501
502def cmd_top(args, data):

Callers

nothing calls this directly

Calls 2

all_issuesFunction · 0.85
format_detailFunction · 0.85

Tested by

no test coverage detected