]> sigrok.org Git - libsigrokdecode.git/commit
adf435x: use .format() for Python string formatting
authorGerhard Sittig <redacted>
Fri, 30 Dec 2022 13:30:55 +0000 (14:30 +0100)
committerGerhard Sittig <redacted>
Mon, 9 Jan 2023 19:13:35 +0000 (20:13 +0100)
commit3851b0c084bc358b134069ba829b7ce1f4c410ff
tree02ca34e1bda7bffc89c46504cc2b9555ef9e16a9
parentc4aaef2588e962d0bd99f7a88841fcf53956da6b
adf435x: use .format() for Python string formatting

Rephrase the old style '%' operator string formatting, prefer .format()
calls instead. It is assumed that routine call argument lists are more
readable than optional/conditional tuples are, and not running format
specifiers and literal text into each other helps readability as well,
as do the .format() routine's optionally named references to parameters.

Avoid text formatting which involves concatenation, always work from one
single format instruction instead.
decoders/adf435x/pd.py