Use f-strings for string formatting in gwpy.cli
This PR updates the gwpy.cli
module to use f-strings for all string formatting, instead of a mix of str.format
and %
-formatting.
I think f-strings are a nice, readable way to do most of this formatting, and normally result in shorter statements.