You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to use error_components there are some dictionary errors. These result from Python 3 removing the 'has_key' method of dictionary objects. They can be corrected by replacing 'dictionary.has_key(key)' with 'key in dictionary'.
The text was updated successfully, but these errors were encountered:
When trying to use error_components there are some dictionary errors. These result from Python 3 removing the 'has_key' method of dictionary objects. They can be corrected by replacing 'dictionary.has_key(key)' with 'key in dictionary'.
The text was updated successfully, but these errors were encountered: