ruff/resources/test/fixtures/excluded.py

9 lines
90 B
Python

a = "abc"
b = f"ghi{'jkl'}"
c = f"def"
d = f"def" + "ghi"
e = (
f"def" +
"ghi"
)