PyCharm has a lot of inspection rules to warn me if my programming style is either unmodern or problamatic.
Because string formatting with %
is not as clean as .format()
, I want to force myself to use the newer approach. I would like that PyCharm supports me and warns me if I use %
to format strings instead of .format()
. How can I achieve this?