williambr commited on
Commit
a8bc7db
1 Parent(s): 013616d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ class ZipCodeEntry(NamedTuple):
14
 
15
 
16
  def _load_zip_codes() -> Dict[str, ZipCodeEntry]:
17
- df = pdb.read_csv('us-zip-code-latitude-and-longitude.txt', dtype=str, sep=';')
18
  zip_code_list = {}
19
  # Zip;City;State;Latitude;Longitude;Timezone;Daylight savings time flag;geopoint
20
  for _, row in df.iterrows():
 
14
 
15
 
16
  def _load_zip_codes() -> Dict[str, ZipCodeEntry]:
17
+ df = pdb.read_csv('Map-City-State-Zip-Lat-Long.txt', dtype=str, sep=';')
18
  zip_code_list = {}
19
  # Zip;City;State;Latitude;Longitude;Timezone;Daylight savings time flag;geopoint
20
  for _, row in df.iterrows():