mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-01 14:20:34 +01:00
6 lines
96 B
Python
6 lines
96 B
Python
import subprocess
|
|
|
|
|
|
def runProcess(cmd):
|
|
subprocess.run(cmd, shell=True).check_returncode()
|