I kind of wish Black would split and join literal strings. I've seen several times when Black converted code like this:
raise SomeError(
"Explanation... "
"yet more explanation"
)
To this:
raise SomeError(
"Explanation... " "yet more explanation"
)
That just looks odd. Black is fantastic, but not perfect.