mirror of https://github.com/astral-sh/ruff
12 lines
511 B
Python
12 lines
511 B
Python
# OK (88 characters)
|
|
"shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:aaa" # type: ignore
|
|
|
|
# OK (88 characters)
|
|
"shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:aaa"# type: ignore
|
|
|
|
# OK (88 characters)
|
|
"shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:aaa" # type: ignore
|
|
|
|
# Error (89 characters)
|
|
"shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:" + "shape:aaaa" # type: ignore
|