Skip to content

Commit 815baf9

Browse files
committed
Fix thousands separator in cfpq_eval
1 parent 56931f2 commit 815baf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cfpq_eval/eval_all_pairs_cflr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def min_numeric(series: pd.Series) -> float:
193193

194194
def format_int(x):
195195
try:
196-
return format(x, ',').replace(',', '\\,')
196+
return format(x, ',')
197197
except ValueError:
198198
return x
199199

0 commit comments

Comments
 (0)