Election results in the London Borough of Sutton.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

14 行
219 B

  1. # Check whether a list of parties is in the parties table
  2. require_relative '../models'
  3. ARGF.each do |line|
  4. line.strip!
  5. print line
  6. if Party.find(line)
  7. puts " found"
  8. else
  9. puts " not found"
  10. end
  11. end