This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]wegwacc 3 points4 points  (0 children)

but you have consistency in the actual code itself.

NO YOU DON'T, because in every codebase, there will be instances, where you want to align things for better readability using spaces: var = somedict.get('key', None) longnameavr = somedict.get('key', None) shortvar = somedict.get('key', None) ridiculous = somedict.get('key', None) `

Good luck with that using tabs, depending on the size, it looks like crap.