E3006 Types Errors
Types
too many variables; the function returns %d value(s) but variable %d was requested
When this occurs
`float("abc")`
Example error message
error[E3006]:
cannot convert "abc" to float: invalid float format
How to fix
The value cannot be converted to a float. Check the source value type.