A continuation line is unaligned for hanging indent.

Anti-pattern

my_dict = {
    "key": "value",
    "long": "the quick brown fox jumps over the "
        "lazy dog",
}

Best practice

my_dict = {
    "key": "value",
    "long": "the quick brown fox jumps over the "
            "lazy dog",
}