From 8e10d646f604968f2f7e39d2d3dcc814c1b00979 Mon Sep 17 00:00:00 2001 From: FlorentLvr <48032461+FlorentLvr@users.noreply.github.com> Date: Tue, 12 Dec 2023 16:35:22 +0100 Subject: [PATCH] fix: ranking #automation on top --- generate_readme.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate_readme.ipynb b/generate_readme.ipynb index 29a81a8c10..51b2777127 100644 --- a/generate_readme.ipynb +++ b/generate_readme.ipynb @@ -642,10 +642,10 @@ " \n", " # Update json\n", " ranking = 2\n", - " if \"automation\" in tags and tool in [\"Notion\", \"LinkedIn\", \"OpenAI\", \"Google Sheets\", \"HubSpot\"]:\n", + " if \"#automation\" in tags and tool in [\"Notion\", \"LinkedIn\", \"OpenAI\", \"Google Sheets\", \"HubSpot\"]:\n", " ranking = 5\n", " elif tool in [\"AI for Work\"]:\n", - " for x in [\"Sales\", \"Marketing\", \"Social Media\", \"Brand\", \"Financial\", \"Legal\", \"Expert\"]:\n", + " for x in [\"Sales\", \"Marketing\", \"Social Media\", \"Brand\", \"Financial\", \"Legal\"]:\n", " if x in title:\n", " ranking = 4\n", " break\n",