When I compile the Python code below, I get
IndentationError: unindent does not match any outer indentation level
It could be because the function above it is not indented the same way. i.e.
class a: def blah: print("Hello world") def blah1: print("Hello world")