Skip to content

Commit 1a86dd4

Browse files
typos
1 parent 9b44aa4 commit 1a86dd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ def insert_from_file(cls, xl_file, conn):
306306

307307
df["home"] = df["home"].apply(normalize_phone_number)
308308
df["work"] = df["work"].apply(normalize_phone_number)
309-
df["cell"] = df["home"].apply(normalize_phone_number)
309+
df["cell"] = df["cell"].apply(normalize_phone_number)
310310

311311
dedup_on = [col for col in cls.__table__.columns if col.name in df.columns]
312312
df["created_date"] = datetime.datetime.utcnow()
@@ -329,7 +329,7 @@ def insert_from_file(cls, xl_file, conn):
329329
@classmethod
330330
def insert_into_pdp_contacts(cls):
331331
column_mapping = get_contacts_mapping(cls) + [
332-
# NOTE: This logic seems wrong. It peels off the streat number and
332+
# NOTE: This logic seems wrong. It peels off the street number and
333333
# calls it the "apartment," and calls the rest of the address the
334334
# "street and number."
335335
(

0 commit comments

Comments
 (0)