File size: 162 Bytes
6309782
 
 
 
 
0f0a387
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)