Closed akx closed 11 months ago
This PR cleans up various uses of % or .format or + string interpolation to use f-strings instead, for performance and readability.
%
.format
+
Conversion was guided by https://github.com/ikamensh/flynt and hand-checked.
What does this PR do?
This PR cleans up various uses of
%
or.format
or+
string interpolation to use f-strings instead, for performance and readability.Conversion was guided by https://github.com/ikamensh/flynt and hand-checked.