python-twitter-tools / twitter

Python Twitter API
http://mike.verdone.ca/twitter/
MIT License
3.17k stars 710 forks source link

Fixing an issue related to pickling #427

Closed Yomguithereal closed 3 years ago

Yomguithereal commented 3 years ago

This PR fixes the client's __getattr method which was erroneously calling Twitter's API when attempting to pickle. I have dropped the object.__getattr__ part because this attribute does not exist on object and was therefore useless.

coveralls commented 3 years ago

Coverage Status

Coverage decreased (-0.03%) to 30.587% when pulling 6349efd0dd477e3cdb9ecd864d72b1cc252763a4 on Yomguithereal:master into 0e8c29c32f59b9a49c9aeed89de486eb94150de5 on sixohsix:master.

RouxRC commented 3 years ago

good catch, thx!