Files
ruff/resources/test/fixtures/filesystem/excluded_file.py
2022-12-01 13:33:33 -05:00

10 lines
90 B
Python

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