Skip to content

Commit 1e46f11

Browse files
committed
remove Unicode formatting character
1 parent ec1a300 commit 1e46f11

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/parsers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2563,7 +2563,8 @@ def _infer_columns(self):
25632563

25642564
while cur_count > 0:
25652565
counts[col] = cur_count + 1
2566-
col = "%s.%d" % (col, cur_count)
2566+
col = '{column}.{count}'.format(
2567+
column=col, count=cur_count)
25672568
cur_count = counts[col]
25682569

25692570
this_columns[i] = col

0 commit comments

Comments
 (0)