(cfg: Dict)
| 605 | return T.get(lang, T["en"]).get(key, key) |
| 606 | |
| 607 | def pause(cfg: Dict) -> None: |
| 608 | input(tr(cfg, "press_enter")) |
| 609 | |
| 610 | def run(cmd: List[str], check: bool=True, capture: bool=False) -> subprocess.CompletedProcess: |
| 611 | env = os.environ.copy() |
no test coverage detected