mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-30 20:31:37 -05: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.