class Pry::Command::AmendLine

def process

def process
  raise CommandError, "No input to amend." if eval_string.empty?
  eval_string.replace(amend_input)
  run "fix-indent"
  run "show-input"
end