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
When using the .asdict() function in python v3.X the following error is encountered. 'dict' object has no attribute 'iteritems'
'dict' object has no attribute 'iteritems'
Fix is to update Line for (rel_key, orig_args) in follow.iteritems(): with for (rel_key, orig_args) in follow.item(): untils.py on line 120.
for (rel_key, orig_args) in follow.iteritems():
for (rel_key, orig_args) in follow.item():
This fix is only applicable for python v3, another package should probably be created to maintain v2 support if required.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the .asdict() function in python v3.X the following error is encountered.
'dict' object has no attribute 'iteritems'
Fix is to update Line
for (rel_key, orig_args) in follow.iteritems():
withfor (rel_key, orig_args) in follow.item():
untils.py on line 120.This fix is only applicable for python v3, another package should probably be created to maintain v2 support if required.
The text was updated successfully, but these errors were encountered: