A continuation line is not indented as far as it should be or is indented too far.

Anti-pattern

In this example the second line is missing indentation.

print("Python", (
"Rules"))

Best practice

print("Python", (
    "Rules"))