diff --git a/common/utils.py b/common/utils.py index 2f8a437..c687366 100644 --- a/common/utils.py +++ b/common/utils.py @@ -36,7 +36,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}") + (f"{input_string[:length-len(ellipsis)].rstrip()}{ellipsis}") if len(input_string) > length else input_string )