I'd suggest using 4 spaces instead of a tab since it's the official standard for python code (PEP 8)
This would make it easier for others to change things and submit pull requests and prevents interpreter errors in the future (python 3 for example doesn't allow mixing tabs and spaces)
I'd suggest using 4 spaces instead of a tab since it's the official standard for python code (PEP 8)
This would make it easier for others to change things and submit pull requests and prevents interpreter errors in the future (python 3 for example doesn't allow mixing tabs and spaces)
Thanks for your work, I really appreciate it!