Maintainability
Not indenting code
Just because you don’t have to indent code blocks with whitespace, doesn’t mean you shouldn’t. Indenting blocks of code aids readability and makes the intent of the scoping clear.
Anti-pattern
Best practice
As a general recommendation, indent blocks of code with 4 spaces.
The exception is module
blocks which are usually not indented as they often correspond to whole files.