LoganMeitz / votefinder

GNU General Public License v3.0
2 stars 2 forks source link

.format() used instead of f-strings #24

Closed rjmagley closed 10 months ago

rjmagley commented 11 months ago

There are lots of places where str.format() is used instead of a nice f-string - about 100, based on a quick search.

Rewriting all of these sounds silly and tedious, but it might be a good way to look over the codebase and get familiar with it and how it works - might also get some eyes on other potential improvements that could be made.

rjmagley commented 11 months ago

(I'm also seeing some reading on SO and other places that f-strings may be somewhere between 1.6 and 3 times faster than str.format() but it's not like improving performance is critical atm)