mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-12 19:55:14 +02:00
9 lines
181 B
Python
9 lines
181 B
Python
import subprocess
|
|||
from transform import transform_input
|
|||
|
|||
def prepare_and_run(cmd):
|
|||
subprocess.call(cmd, shell=True)
|
|||
|
|||
def retry_transform(data):
|
|||
return transform_input(data)
|