From 7181b6472c819b3fa8836a000e30c138dc943976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Wed, 13 Nov 2024 21:06:52 +0100 Subject: [PATCH] fix mistakenly hardcoded value in truncate() --- common/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/utils.py b/common/utils.py index 30bade1..2f8a437 100644 --- a/common/utils.py +++ b/common/utils.py @@ -37,7 +37,7 @@ def safe_getattr(obj: object, attr_chain: str, default: Any | None = None) -> ob def truncate(input_string: str, length: int = 30, ellipsis: str = "…") -> str: return ( (f"{input_string[:length-len(ellipsis)]}{ellipsis}") - if len(input_string) > 30 + if len(input_string) > length else input_string )