Skip to content

Commit

Permalink
Merge pull request #1601 from KentShikama/add-curry-count-address
Browse files Browse the repository at this point in the history
Add DA address for Curry county
  • Loading branch information
KentShikama authored Feb 16, 2022
2 parents 5cda4b7 + 10ac5e4 commit 0166cc1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/backend/expungeservice/form_filling.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ def _build_da_address(location: str) -> str:
"columbia": "230 Strand St. - Columbia County Courthouse Annex - St. Helens, OR 97051",
"coos": "Coos County District Attorney's Office - 250 N. Baxter - Coquille, Oregon 97423",
"crook": "District Attorney - 300 NE 3rd St, Rm. 34 - Prineville, OR 97754",
"curry": "District Attorney - 94235 Moore Street, #232 - Gold Beach, OR 97444",
"deschutes": "District Attorney - 1164 NW Bond St. - Bend, OR 97703",
"douglas": "District Attorney - 1036 SE Douglas Avenue - Justice Building, Room 204 - Roseburg, OR 97470",
"gilliam": "District Attorney - 221 S. Oregon St - PO Box 636 - Condon, OR 97823",
Expand Down Expand Up @@ -325,4 +326,5 @@ def _build_da_address(location: str) -> str:
"wheeler": "District Attorney - P.O. Box 512 - Fossil, OR 97830",
"yamhill": "District Attorney - 535 NE 5th St #117 - McMinnville, OR 97128",
}
return ADDRESSES[location.replace(" ", "_").lower()]
cleaned_location = location.replace(" ", "_").lower()
return ADDRESSES.get(cleaned_location, "")

0 comments on commit 0166cc1

Please sign in to comment.