(self, val, type)
| 43 | |
| 44 | |
| 45 | def _aiblocks_parseVal(self, val, type): |
| 46 | if(type=="int"): |
| 47 | return int(val) |
| 48 | elif(type=="float"): |
| 49 | return float(val) |
| 50 | elif(type=="array"): |
| 51 | return eval(val) |
| 52 | else: |
| 53 | return val |
| 54 |
nothing calls this directly
no outgoing calls
no test coverage detected