MCPcopy Index your code
hub / github.com/reactive-python/reactpy / in_py

Function in_py

tasks.py:244–249  ·  view source on GitHub ↗
(context: Context, *commands: str, **kwargs: Any)

Source from the content-addressed store, hash-verified

242
243
244def in_py(context: Context, *commands: str, **kwargs: Any) -> None:
245 for p in PY_PROJECTS:
246 with context.cd(p):
247 log.info(f"Running commands in {p}...")
248 for c in commands:
249 context.run(c, **kwargs)
250
251
252def in_js(context: Context, *commands: str, **kwargs: Any) -> None:

Callers 2

lint_pyFunction · 0.85
test_pyFunction · 0.85

Calls 1

runMethod · 0.45

Tested by 1

test_pyFunction · 0.68