It looks like multiline statements are not being upgraded for f-strings. For example this is not changed: ``` val = 1 '{}'.format( val) ``` But the one below does get changed: ``` val = 1 '{}'.format(val) ``` Is this expected?
It looks like multiline statements are not being upgraded for f-strings. For example this is not changed:
But the one below does get changed:
Is this expected?