chore: remove lowell seeding rules

This commit is contained in:
Nelson Jovel 2023-12-20 14:03:15 -08:00
parent 880b438eb4
commit 56b512810c
5 changed files with 5 additions and 62 deletions

View file

@ -1,14 +0,0 @@
module Rule
class SeedOnlyLowell
attr_reader :row
def initialize(row:)
@row = row
end
def skip_row?
district = row['District'].strip.downcase
'lowell' != district
end
end
end