fix mistakenly hardcoded value in truncate()

This commit is contained in:
Lukáš Kucharczyk 2024-11-13 21:06:52 +01:00
parent af06d07ee3
commit 7181b6472c
Signed by: lukas
SSH Key Fingerprint: SHA256:vMuSwvwAvcT6htVAioMP7rzzwMQNi3roESyhv+nAxeg
1 changed files with 1 additions and 1 deletions

View File

@ -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
)