class AmazingPrint::Formatters::ObjectFormatter

def left_aligned

def left_aligned
  current = options[:indent]
  options[:indent] = 0
  yield
ensure
  options[:indent] = current
end