|
|
|
|
|
by bpicolo
4095 days ago
|
|
The point is there are things that don't violate pep8 that are still atrocious for example: some_function(long_variable_name_and_stuff, long_variable_name_and_stuff,
long_variable_name_and_stuff)
The lower indentation level doesnt actually matter at all says flake8edit: To below, that's possible. I can't remember the exact case right now but there are things along these lines that are valid and shouldn't be. Multiple possible indentation formats is not necessarily something you want to allow as an org, which is where something like YAPF comes into play |
|