We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug If I instantiate pd.StringDtype without args, pyright is complaining that it's missing an arg.
To Reproduce import pandas as pd d = pd.StringDtype() # pyright says missing the storage arg, but that arg is optional
storage
Please complete the following information: Windows pyright pandas-stubs-1.5.3.230203
The text was updated successfully, but these errors were encountered:
Thanks for the report.
Need to change
pandas-stubs/pandas-stubs/core/arrays/string_.pyi
Line 10 in b76dbb6
storage: Literal["python", "pyarrow"] | None = None
pandas-stubs/tests/test_dtypes.py
Line 127 in b76dbb6
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
If I instantiate pd.StringDtype without args, pyright is complaining that it's missing an arg.
To Reproduce
import pandas as pd
d = pd.StringDtype() # pyright says missing the
storage
arg, but that arg is optionalPlease complete the following information:
Windows
pyright
pandas-stubs-1.5.3.230203
The text was updated successfully, but these errors were encountered: