E3005 Type Errors
cannot-convert-to-int
cannot convert value to integer
When this occurs
`int("abc")`
Example error message
error[E3005]:
cannot convert "abc" to int: invalid integer format
How to fix
The value cannot be converted to an integer. Check the source value type.