In Python files, the syntax highlighting for f-strings is incorrect when the f-string’s expression contains a newline. ```python print(f"{1 }foo") # new line in brace, highlighting incorrect print(f"{1}bar") ```
In Python files, the syntax highlighting for f-strings is incorrect when the f-string’s expression contains a newline.