-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
Minor typo on warnings #39158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
take |
Hi ! |
go ahead |
Just wanted to know if this issue still persists ? Because I think it is already fixed in #39159 . |
#39159 wasn't merged, so it looks like this is still open |
Okay ! Will try fixing this |
Hey found this issue still open. Can I take this issue?. I'm new to the open-source community willing to do some useful contributions. |
it's being worked on, look up |
Hey! |
@MarcoGorelli . I have fixed all the warning.warn messages in the entire code . |
Gentle ping @MarcoGorelli . |
@MarcoGorelli Could you check the pull request ? #43163 fixed flake8 |
pandas/pandas/_libs/parsers.pyx
Lines 1993 to 1996 in 25110a9
"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.
The text was updated successfully, but these errors were encountered: