style(jobs): fix array-bracket spacing and add final newline

This commit is contained in:
End Nightshade 2026-02-22 15:03:56 -07:00
parent a02f122c2d
commit 20ffa8d1e4
No known key found for this signature in database

View file

@ -2,7 +2,7 @@ class Identity::ReapAgedOutUsersJob < ApplicationJob
queue_as :default
def perform
aged_out = Identity.where(ysws_eligible: true, hq_override: [false, nil])
aged_out = Identity.where(ysws_eligible: true, hq_override: [ false, nil ])
.where("birthday <= ?", 19.years.ago.to_date)
reaped_count = 0
@ -15,4 +15,4 @@ class Identity::ReapAgedOutUsersJob < ApplicationJob
Rails.logger.info "ReapAgedOutUsersJob: marked #{reaped_count} #{"user".pluralize reaped_count} as alumni and ineligible"
end
end
end