Переменная пройти в подпроцессовом запуск Python

#ran in python 3.8.x

cmd = "ls"
cmd_args = "-l"
subprocess.run([cmd, cmd_args])
Fun Bee