From: https://github.com/mtshiba/pylyzer/issues/115 Starting with Python 3.12, the use of strings within f-strings is permitted. [Reference](https://docs.python.org/3.12/reference/lexical_analysis.html#:~:text=Changed%20in%20version%203.12%3A%20Prior%20to%20Python%203.12%2C%20reuse%20of%20the%20same%20quoting%20type%20of%20the%20outer%20f%2Dstring%20inside%20a%20replacement%20field%20was%20not%20possible) However, the current parser implementation does not seem to allow the use of same quoting type strings within f-strings. ```python f"{"hello"}" ``` results in the following parsing error: ``` invalid syntax. Got unexpected token 'hello' at row 1 col 5 ```