From 6de2608598bf948034521b60ec634ca513398156 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Mon, 23 Oct 2023 12:43:44 +0800 Subject: [PATCH] Fix typos Found via `codespell -L mata` --- README.md | 2 +- mnamer/utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 445ac4af..aea55a01 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,6 @@ Parameters can either by entered as command line arguments or from a config file ## Contributions -Community contributions are a welcome addition to the project. In order to be merged upsteam any additions will need to be formatted with [black](https://black.readthedocs.io) for consistency with the rest of the project and pass the continuous integration tests run against each PR. Before introducing any major features or changes to the configuration api please consider opening [an issue](https://github.com/jkwill87/mnamer/issues) to outline your proposal. +Community contributions are a welcome addition to the project. In order to be merged upstream any additions will need to be formatted with [black](https://black.readthedocs.io) for consistency with the rest of the project and pass the continuous integration tests run against each PR. Before introducing any major features or changes to the configuration api please consider opening [an issue](https://github.com/jkwill87/mnamer/issues) to outline your proposal. Bug reports are also welcome on the [issue page](https://github.com/jkwill87/mnamer/issues). Please include any generated crash reports if applicable. Feature requests are welcome but consider checking out [if it is in the works](https://github.com/jkwill87/mnamer/issues?q=label%3Arequest) first to avoid duplication. diff --git a/mnamer/utils.py b/mnamer/utils.py index 84df7870..92f8ab72 100644 --- a/mnamer/utils.py +++ b/mnamer/utils.py @@ -69,7 +69,7 @@ def filename_replace(filename: str, replacements: dict[str, str]) -> str: def filter_blacklist(paths: list[Path], blacklist: list[str]) -> list[Path]: - """Filters (set difference) paths by a collection of regex pattens.""" + """Filters (set difference) paths by a collection of regex patterns.""" return [ path.absolute() for path in paths