From 22e4d1ec3f981b962ef7b336ea2f6c7688fd6cc1 Mon Sep 17 00:00:00 2001 From: Fotis Voutsas Date: Thu, 26 Oct 2023 16:41:43 +0300 Subject: [PATCH] Remove semicolons from strings (#16276) Co-authored-by: Ilya Mashchenko --- integrations/gen_docs_integrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrations/gen_docs_integrations.py b/integrations/gen_docs_integrations.py index 70b69c03e535f6..2337e63b92dc3f 100644 --- a/integrations/gen_docs_integrations.py +++ b/integrations/gen_docs_integrations.py @@ -97,7 +97,7 @@ def clean_string(string): The string represents an integration name, as it would be displayed in the final text """ - return string.lower().replace(" ", "_").replace("/", "-").replace("(", "").replace(")", "") + return string.lower().replace(" ", "_").replace("/", "-").replace("(", "").replace(")", "").replace(":", "") def read_integrations_js(path_to_file):