We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Hi,
mypy rejects Index(None, "column1", "column2") as it expects a string. However, we are allowed to pass None if we want to use the automated naming
Index(None, "column1", "column2")
None
Thanks!
The text was updated successfully, but these errors were encountered:
Thanks for reporting! PRs welcome.
Sorry, something went wrong.
Make name argument optional (#158)
7b890f8
Closes #124
Make name argument optional (dropbox#158)
2bb7a55
Closes dropbox#124
Successfully merging a pull request may close this issue.
Hi,
mypy rejects
Index(None, "column1", "column2")
as it expects a string. However, we are allowed to passNone
if we want to use the automated namingThanks!
The text was updated successfully, but these errors were encountered: