scripted diff
```
flynt --transform-concats test/functional/rpc_*
```
Manual edits:
- remove unnecessary string formatting (`f"{-1}"` -> `"-1"`)
- convert more `"...".format(..)` instances to f-strings. These were missed by flynt presumably because it sometimes cannot understand multiline strings formatted by autopep8
Depends on D13196