I formatted all the code with autopep8 and ran it through pylint, correcting all the comments. I also removed unused code and imports in some places and added documentation to some methods and functions.
I also removed the info module, which makes no sense and does not make life easier (and any module should do this) for a potential user, since it replaces only 5 lines of code.
My changes DO NOT AFFECT the library's logic and its operation (although you can check it just in case).
I formatted all the code with
autopep8
and ran it throughpylint
, correcting all the comments. I also removed unused code and imports in some places and added documentation to some methods and functions. I also removed theinfo
module, which makes no sense and does not make life easier (and any module should do this) for a potential user, since it replaces only 5 lines of code. My changes DO NOT AFFECT the library's logic and its operation (although you can check it just in case).