Skip to content

Commit 548e121

Browse files
committed
column variable is displayed as integer
1 parent bc58bef commit 548e121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/io/parsers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2545,7 +2545,7 @@ def _infer_columns(self):
25452545

25462546
while cur_count > 0:
25472547
counts[col] = cur_count + 1
2548-
col = "{column}.{count}".format(
2548+
col = "{column:d}.{count}".format(
25492549
column=col, count=cur_count)
25502550
cur_count = counts[col]
25512551

0 commit comments

Comments
 (0)