pe-st / garmin-connect-export

Download a copy of your Garmin Connect data, including stats and GPX tracks.
MIT License
364 stars 75 forks source link

Make string concatenation more compact by introducing f-strings #78

Closed bxsx closed 2 years ago

bxsx commented 2 years ago

F-strings were introduced in Python 3.6 and are a great way to make string concatenation more compact. They also win in performance benchmarks.

This PR also fixes the log message that contains redundant whitespaces (dbcf8f0).

I also found a potential bug in the code. Please see the comment.

pe-st commented 2 years ago

thanks!