From ea5356a4a01f859f1774492b2749c3f3fe175170 Mon Sep 17 00:00:00 2001 From: FlorentLvr Date: Fri, 5 Apr 2024 08:16:04 +0200 Subject: [PATCH] fix: NA replace Not Found PEOPLE.Organization removed --- .../core/domain/Google_Sheets_Update_people_db.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/growth-engine/core/domain/Google_Sheets_Update_people_db.ipynb b/models/growth-engine/core/domain/Google_Sheets_Update_people_db.ipynb index b1368d5a..5ea121be 100644 --- a/models/growth-engine/core/domain/Google_Sheets_Update_people_db.ipynb +++ b/models/growth-engine/core/domain/Google_Sheets_Update_people_db.ipynb @@ -619,7 +619,7 @@ " print(\"- ⚠️ LinkedIn call:\", call_linkedin)\n", " if len(tmp_df) > 0:\n", " organization = tmp_df.loc[0, \"COMPANY_NAME\"]\n", - " df.loc[index, \"ORGANIZATION\"] = str(organization).replace(\"None\", \"Not Found\").replace(\"NA\", \"Not Found\").strip()\n", + " df.loc[index, \"ORGANIZATION\"] = str(organization).replace(\"None\", \"Not Found\").strip()\n", " print(\"- Organization:\", organization)\n", " if call_linkedin >= limit_linkedin:\n", " print(\"🛑 Call LinkedIn reached:\", limit_linkedin)\n",