Closed benjdevries closed 8 months ago
I'm a first time contributor. Please let me know if I should update the PR title or description or if there is any documentation that needs to be updated as well. Thanks!
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 97.19%. Comparing base (
e927322
) to head (b3e3e5a
).
:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Thanks for contributing! I will check the docs/linting and make a new release soon.
Fixes #161
Avoid using mutable objects as default arguments as functions. Even though this particular usage was safe, it opens up the projects to issues down the road if the default argument is mutated within the function. For this usage, we don't need an actual
list
object, just a sequence of strings, so we can use a string itself.