Skip to content

Commit e8b2a47

Browse files
committed
removed the code of making Unicode string
1 parent b939604 commit e8b2a47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pandas/io/parsers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2564,7 +2564,7 @@ def _infer_columns(self):
25642564
while cur_count > 0:
25652565
counts[col] = cur_count + 1
25662566
col = '{column}.{count}'.format(
2567-
column=u''.join(col), count=cur_count)
2567+
column=col, count=cur_count)
25682568
cur_count = counts[col]
25692569

25702570
this_columns[i] = col

0 commit comments

Comments
 (0)