From 374668abe6da0270a9f6058a3f51aed60d91ecef Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Tue, 5 Jul 2022 12:12:58 +0100 Subject: [PATCH] Comment --- content.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content.py b/content.py index 2f00f8bed..4429ab1ff 100644 --- a/content.py +++ b/content.py @@ -1009,7 +1009,8 @@ def _auto_tag(base_dir: str, nickname: str, domain: str, def _get_simplified_content(content: str) -> str: - """ + """Returns a simplified version of the content suitable for + splitting up into individual words """ content_simplified = \ content.replace(',', ' ').replace(';', ' ').replace('- ', ' ')