sherpa-ai/sherpa

Using shlex to split runner_command

nasimrahaman opened this issue ยท 1 comments

First things first, great work on the library! ๐Ÿ‘

This (very minor) issue is regarding this line, where I believe shlex.split(command) would be more appropriate (instead of command.split(' ') (shlex is a builtin module). It would enable commands like --arg1 "Argument 1" --arg2 "Argument 2". It would also be nice if command could be a pre-parsed list.

Resolved in #95