Code should have consistent indentation, typically spaced out in increments of two or four.

Anti-pattern

The print function on the following line is indented at five spaces instead of four.

if True:
     print('Hi there')

Best practice

The code is now spaced out at four spaces instead of five.

if True:
    print('Hi there')