Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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('
|
| 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():
|