mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-28 12:55:05 +00:00
9 lines
90 B
Python
9 lines
90 B
Python
a = "abc"
|
|
b = f"ghi{'jkl'}"
|
|
|
|
c = f"def"
|
|
d = f"def" + "ghi"
|
|
e = (
|
|
f"def" +
|
|
"ghi"
|
|
)
|