**Describe the style change** I wonder if f-strings should be formatted at all. **Examples in the current _Black_ style** ```python print(f"{"|".join(['a','b','c'])}") ``` **Desired style** ```python print(f"{"|".join(['a','b','c'])}") ``` > [!NOTE] > There's no change to the input here. **Additional context** Black formats the `"|"` to become `" | "` and that affects the output which cannot be desired. Black formats the snippet like this currently: ```python print(f"{" | ".join(['a','b','c'])}") ```