File size: 162 Bytes
41ca5f7
 
 
 
 
47d04a3
1
2
3
4
5
6
def parseAndRun(commandlist,command,args=[],obj=None):
    if command in commandlist: func = commandlist[command]["func"]

    if not func: return

    func(args)