Skip to content

Commit

Permalink
change the state attribute for the report
Browse files Browse the repository at this point in the history
  • Loading branch information
nks2109 committed Dec 13, 2024
1 parent 7242007 commit 3233309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/queries/steven_new.rb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def bad_eg_id(eg_id)
address2_home = home_address.try(:address_2)
city_home = home_address.try(:city)
county_home = home_address.try(:county)
state_home = home_address.try(:location_state_code)
state_home = home_address.try(:state)
zip_home = home_address.try(:zip)

# Mailing Address
Expand All @@ -79,7 +79,7 @@ def bad_eg_id(eg_id)
address2_mail = mailing_address.try(:address_2)
city_mail = mailing_address.try(:city)
county_mail = mailing_address.try(:county)
state_mail = mailing_address.try(:location_state_code)
state_mail = mailing_address.try(:state)
zip_mail = mailing_address.try(:zip)

csv << [
Expand Down

0 comments on commit 3233309

Please sign in to comment.