class TablePrint::Fingerprinter

def handleable_columns(hash)

def handleable_columns(hash)
  # get the keys where the value is an empty hash
  hash.select { |k, v| v == {} }.collect { |k, v| k }
end