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
The statement
raise TypeError("got unexpected keyword argument %r" % (list(kwargs.keys())[0],))
will raise a dict_keys' object does not support indexing error Replace that statement with
The text was updated successfully, but these errors were encountered:
db85831
Looking at the change log I noticed that you forgot the index [0]
Sorry, something went wrong.
i didn't forget, i removed it. note that i rephrased the text a little. thanks.
Ok, thanks for the quick fixes.
No branches or pull requests
The statement
will raise a dict_keys' object does not support indexing error
Replace that statement with
The text was updated successfully, but these errors were encountered: