class RuboCop::Cop::Style::ParallelAssignment::RescueCorrector

def begin_correction(rescue_result)

def begin_correction(rescue_result)
  "begin\n" \
    "#{indentation(node)}" \
    "#{assignment.join("\n#{indentation(node)}")}" \
    "\n#{offset(node)}rescue\n" \
    "#{indentation(node)}#{rescue_result.source}" \
    "\n#{offset(node)}end"
end