mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
15 lines
220 B
Python
15 lines
220 B
Python
'''trailing whitespace
|
|
inside a multiline string'''
|
|
|
|
f'''trailing whitespace
|
|
inside a multiline f-string'''
|
|
|
|
# Trailing whitespace after `{`
|
|
f'abc {
|
|
1 + 2
|
|
}'
|
|
|
|
# Trailing whitespace after `2`
|
|
f'abc {
|
|
1 + 2
|
|
}'
|