ruff/crates/ruff_linter/resources/test/fixtures/filesystem/excluded_file.py
2023-09-20 08:38:27 +02:00

9 lines
90 B
Python

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