Describe the bug
code inside fstring not getting formatted
To Reproduce
For example, take this code:
def fff():
return 0
print( f"asdasd { fff () } dasdasd" )
And run it with https://black.vercel.app/?version=main:
The result is:
def fff():
return 0
print(f"asdasd { fff () } dasdasd")
Expected behavior
def fff():
return 0
print(f"asdasd {fff()} dasdasd")
Environment
- Black's version:
- OS and Python version:
Additional context
Describe the bug
code inside fstring not getting formatted
To Reproduce
For example, take this code:
And run it with https://black.vercel.app/?version=main:
The result is:
Expected behavior
Environment
Additional context