mirror of
https://github.com/GSA/notifications-api.git
synced 2026-05-21 09:11:27 -04:00
Using `+` to concatenate strings isn’t very memory efficient. Not sure if there are real-world implications for how it’s being used here, but can’t hurt to use `.join` instead. Rewriting it as a generator also lets us remove some unneeded variable assignment.