MCPcopy Create free account
hub / github.com/FastLED/FastLED / _run_gh

Function _run_gh

ci/tools/coderabbit_addressor.py:97–106  ·  view source on GitHub ↗
(args: list[str])

Source from the content-addressed store, hash-verified

95
96
97def _run_gh(args: list[str]) -> str:
98 result = subprocess.run(
99 ["gh"] + args,
100 capture_output=True,
101 text=True,
102 encoding="utf-8",
103 errors="replace",
104 check=True,
105 )
106 return result.stdout
107
108
109def _current_pr() -> Optional[int]:

Callers 4

_current_prFunction · 0.85
_repo_slugFunction · 0.85
fetch_commentsFunction · 0.85
replyFunction · 0.85

Calls 1

runMethod · 0.45

Tested by

no test coverage detected