Skip to content

Commit

Permalink
Merge pull request #86 from biocore/daklapack_debug
Browse files Browse the repository at this point in the history
fix bug in importing leading-zero zip codes
  • Loading branch information
wasade authored Oct 19, 2021
2 parents 43b542e + e09dc83 commit 1c587b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions microsetta_admin/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -763,10 +763,12 @@ def return_error(msg):
fulfillment_hold_msg = request.form.get('fulfillment_hold_msg')

try:
# NB: import everything as a string so that zip codes beginning with
# zero (e.g., 06710) don't get silently cast to numbers
if file.filename.endswith('xls'):
addresses_df = pd.read_excel(file)
addresses_df = pd.read_excel(file, dtype=str)
elif file.filename.endswith('xlsx'):
addresses_df = pd.read_excel(file, engine='openpyxl')
addresses_df = pd.read_excel(file, engine='openpyxl', dtype=str)
else:
raise ValueError(f"Unrecognized extension on putative excel "
f"filename: {file.filename}")
Expand Down

0 comments on commit 1c587b2

Please sign in to comment.