diff options
author | 2019-09-11 11:33:16 -0400 | |
---|---|---|
committer | 2019-09-11 11:33:16 -0400 | |
commit | da20c52802cbb4c68cfbb058e9ffc986b591240f (patch) | |
tree | bf38f7863925b393326edf4dc04453508e545a2b /bot/utils | |
parent | Merge branch 'master' into flake8-annotations (diff) |
Fix incorrect merge conflict resolutions, lint remaining items
Diffstat (limited to 'bot/utils')
-rw-r--r-- | bot/utils/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/utils/__init__.py b/bot/utils/__init__.py index 8732eb22..0aa50af6 100644 --- a/bot/utils/__init__.py +++ b/bot/utils/__init__.py @@ -110,7 +110,7 @@ def replace_many( regex = re.compile(pattern, re.I if ignore_case else 0) def _repl(match: re.Match) -> str: - """Returns replacement depending on `ignore_case` and `match_case`""" + """Returns replacement depending on `ignore_case` and `match_case`.""" word = match.group(0) replacement = replacements[word.lower() if ignore_case else word] |