(cmd_ls)
| 46 | parser.set_defaults(func=evaluate) |
| 47 | |
| 48 | def stringify_cmd(cmd_ls): |
| 49 | cmd = "" |
| 50 | for string in cmd_ls: |
| 51 | cmd += string + " " |
| 52 | return cmd |
| 53 | |
| 54 | ## TODO |
| 55 | def evaluate(args): |
nothing calls this directly
no outgoing calls
no test coverage detected