Fix

"multiple-value X in single-value context"

Fix the 'multiple-value in single-value context' error by capturing all return values or ignoring extras with the blank identifier.

"multiple-value X in single-value context" error occurs because a function returns multiple values, but you are trying to assign them to a single variable without using the blank identifier.

// Incorrect: function returns (int, error)
x := someFunction()

// Correct: capture both values or ignore the error
x, err := someFunction()
// OR
x, _ = someFunction()