From 64ccdd7b1fb5fc5955c13a8cc75031b079ff9868 Mon Sep 17 00:00:00 2001 From: Jared Roth Date: Tue, 19 Mar 2019 14:50:15 -0700 Subject: [PATCH] Remove errant 8501 mapping All 8501 zipcodes fall within the already-existing 85 mapping in `arizona.rb`. This entry was causing errors. --- lib/tzip/values/mountain.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tzip/values/mountain.rb b/lib/tzip/values/mountain.rb index 642f7b9..d9d3f63 100644 --- a/lib/tzip/values/mountain.rb +++ b/lib/tzip/values/mountain.rb @@ -2,6 +2,6 @@ module TZip ZONINGS[:mountain] = %w{577} ZONINGS[:mountain] += %w{59} ZONINGS[:mountain] += %w{798 799} - ZONINGS[:mountain] += %w{80 81 82 83 831 84 8501 87 88} + ZONINGS[:mountain] += %w{80 81 82 83 831 84 87 88} ZONINGS[:mountain] += %w{979} end