mirror of
https://github.com/astral-sh/ruff
synced 2026-01-09 23:54:36 -05:00
Normalize implicit concatenated f-string quotes per part (#13539)
This commit is contained in:
@@ -307,3 +307,11 @@ hello {
|
||||
]
|
||||
} --------
|
||||
"""
|
||||
|
||||
|
||||
# Implicit concatenated f-string containing quotes
|
||||
_ = (
|
||||
'This string should change its quotes to double quotes'
|
||||
f'This string uses double quotes in an expression {"woah"}'
|
||||
f'This f-string does not use any quotes.'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user