mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-23 02:11:10 +00:00
8 lines
150 B
Python
8 lines
150 B
Python
import subprocess
|
|
from typing import List
|
|
|
|
|
|
def run_command(command_array: List[str]) -> None:
|
|
with subprocess.Popen(command_array):
|
|
pass
|