|
|
|
|
|
by pdonis
1606 days ago
|
|
> support for tabs Tabs are not PEP 8 compliant except for consistency with existing code: https://www.python.org/dev/peps/pep-0008/#tabs-or-spaces But if you're going to use a tool like Black in the first place, you're already committed to not preserving different formatting styles in existing code. You want to enforce one consistent style everywhere in the code base. And PEP 8 says that means no tabs. > a personal grudge against tabs I don't see why there would have to be any personal grudge given the above. |
|