You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you write a string you type " and vscode already adds the closing quote.
When you write an f-string you write f" and vscode does not add a closing quote. When you then add " it will add an additional quote which vscode thinks is the closing quote. The result is f""" which is a syntax error and requires to delete the extra closing quote.
The text was updated successfully, but these errors were encountered:
When you write a string you type
"
and vscode already adds the closing quote.When you write an f-string you write
f"
and vscode does not add a closing quote. When you then add"
it will add an additional quote which vscode thinks is the closing quote. The result isf"""
which is a syntax error and requires to delete the extra closing quote.The text was updated successfully, but these errors were encountered: