Skip to content

Commit b861551

Browse files
authored
Remove unnecessary backticks (#15393)
Ref: #15367 (comment)
1 parent 443bf38 commit b861551

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/formatter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,9 +427,9 @@ or f-string literal that contains the [configured quote style]:
427427
```python
428428
# format.quote-style = "double"
429429

430-
f'{"""nested " """}'`
430+
f'{"""nested " """}'
431431
# This f-string cannot be formatted as follows when targeting Python < 3.12
432-
f"{'''nested " '''}``
432+
f"{'''nested " '''}"
433433
```
434434

435435
For all target Python versions, when a [self-documenting f-string] contains an expression between

0 commit comments

Comments
 (0)