Election results in the London Borough of Sutton.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- # Check whether a list of parties is in the parties table
-
- require_relative '../models'
-
- ARGF.each do |line|
- line.strip!
- print line
- if Party.find(line)
- puts " found"
- else
- puts " not found"
- end
- end
|