markqvist / LXMF

A universal, distributed and secure messaging protocol for Reticulum
MIT License
226 stars 15 forks source link

use f-strings instead of string concatenation #20

Open prusnak opened 1 week ago

prusnak commented 1 week ago

This PR replaces the "foo "+str(e)+" bar" with f"foo {e} bar" which is modern and (arguably) easier to read.