-
- Notifications
You must be signed in to change notification settings - Fork 19.4k
Closed
Labels
BugWarningsWarnings that appear or should be added to pandasWarnings that appear or should be added to pandasgood first issue
Description
pandas/pandas/_libs/parsers.pyx
Lines 1993 to 1996 in 25110a9
| warning_message = " ".join([ | |
| f"Columns ({warning_names}) have mixed types." | |
| f"Specify dtype option on import or set low_memory=False." | |
| ]) |
"Columns ({warning_names}) have mixed types.Specify dtype option on import or set low_memory=False."Note the lack of a space after the period on
types.Specify. That's because there's no comma separating the strings inside the list, so they get appended while still inside the list, and get passed as a single string to " ".join(...), thus it has nothing to join.Simply adding the missing comma should fix it.
Metadata
Metadata
Assignees
Labels
BugWarningsWarnings that appear or should be added to pandasWarnings that appear or should be added to pandasgood first issue