line-too-long / C0301#

Message emitted:

Line too long (%s/%s)

Description:

Used when a line is longer than a given number of characters.

Correct code:

FRUIT = [
    "apricot",
    "blackcurrant",
    "cantaloupe",
    "dragon fruit",
    "elderberry",
    "fig",
    "grapefruit",
]

Problematic code:

FRUIT = ["apricot", "blackcurrant", "cantaloupe", "dragon fruit", "elderberry", "fig", "grapefruit"]  # [line-too-long]

Created by the format checker.