Breaking up the conditional of an if statement does not automatically indent as expected when going to a new line.
example:
if (True
or True): #hiting enter here
expected:
if (True
or True):
print("should be indented")
actual:
if (True
or True):
print("expected an indented block after 'if')