0a81fd740e9d05f98aa31c432a7647c362274ad9
python/pylance/Unterminated expression in f-string; missing close bracePylance.md
... | ... | @@ -1,9 +1,9 @@ |
1 | 1 | [How to fix Unterminated expression in f-string; missing close brace in python? - Stack Overflow](https://stackoverflow.com/questions/68461626/how-to-fix-unterminated-expression-in-f-string-missing-close-brace-in-python) |
2 | 2 | |
3 | -``` |
|
3 | +```python |
|
4 | 4 | s = f'hoge {body['key']}' |
5 | 5 | ``` |
6 | 6 | ではなく、 |
7 | -``` |
|
7 | +```python |
|
8 | 8 | s = f'hoge {body["key"]}' |
9 | 9 | ``` |
... | ... | \ No newline at end of file |