A continuation line is indented farther than it should be for a hanging indent.

Anti-pattern

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

Best practice

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