Skip to content

Commit f971aba

Browse files
committed
Fix format
1 parent bac9424 commit f971aba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clr_loader/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,6 @@ def _truncate(string: str, length: int) -> str:
141141
if length <= 1:
142142
raise TypeError("length must be > 1")
143143
if len(string) > length - 1:
144-
return f"{string[:length-1]}…"
144+
return f"{string[: length - 1]}…"
145145
else:
146146
return string

0 commit comments

Comments
 (0)