ruff/crates/ruff_linter/resources/test/fixtures/pycodestyle/W291.py
2024-02-05 21:25:33 -05:00

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
}'