E731
vim using Dictionary as a String
A Dictionary was used where a String value was expected, such as in string concatenation. Convert it to a string representation with string() before the operation.
A Dictionary was used where a String value was expected, such as in string concatenation. Convert it to a string representation with string() before the operation.