-
-
Notifications
You must be signed in to change notification settings - Fork 140
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
DataFrame.drop with columns=set(...) is unspecified #1008
Comments
First, your example is not correct. It should be: import pandas as pd
df = pd.DataFrame({1: [2], 3: [4]}) # Fix is here
df = df.drop(columns={1}) Secondly, the pandas documentation says that the argument for I've added a reference to a pandas issue pandas-dev/pandas#59890 to see what the pandas developers say there. |
based on discussion at dev meeting on 2/26/2025: modify docs to say that any |
Hi, thank you for following up the issue in the dev meeting. However I believe |
Ooops. Typo on my part. Yes, the stubs need to be modified. |
Describe the bug
DataFrame.drop
withcolumns=set(...)
is unspecified.To Reproduce
pandas
example that is not properly checked by the stubs.mypy
type checker.Please complete the following information
[System.Environment]::OSVersion.Version
Python 3.11.9
mypy 1.11.2 (compiled: yes)
pandas-stubs
:pandas-stubs==2.2.2.240807
Additional context
Nope
The text was updated successfully, but these errors were encountered: