Skip to content

Commit a4103ff

Browse files
authored
Drop repr call (#554)
1 parent 26ee72a commit a4103ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bayes_opt/parameter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def to_string(self, value: Any, str_len: int) -> str:
140140
-------
141141
str
142142
"""
143-
s = f"{value!r:<{str_len}}"
143+
s = f"{value:<{str_len}}"
144144

145145
if len(s) > str_len:
146146
return s[: str_len - 3] + "..."

0 commit comments

Comments
 (0)