From b556054c7009d82dffcc9bc9316eae748ce6ee3e Mon Sep 17 00:00:00 2001 From: bswck Date: Tue, 9 Jan 2024 18:38:53 +0100 Subject: [PATCH] Hotfix --- redesc/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redesc/main.py b/redesc/main.py index 741100c..9809e99 100644 --- a/redesc/main.py +++ b/redesc/main.py @@ -162,7 +162,7 @@ def __post_init__(self) -> None: all_tags = [] for tag in self.tags: total += len(tag) + (2 * (" " in tag)) - if total >= 500: + if total >= 400: break total += 1 all_tags.append(tag)