diff options
| author | 2019-09-05 18:35:04 -0400 | |
|---|---|---|
| committer | 2019-09-05 18:35:04 -0400 | |
| commit | d982254a79ca3e34c9f50e072a925fe6b8a12ed1 (patch) | |
| tree | 689691b7ede87b0b5202e4a5844c4a06b179a471 /bot/utils | |
| parent | Update Snakes and Ladders (diff) | |
Fix misconfigured flake8 so docstrings are properly linted
Relint
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 3249a9cf..72a681a3 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): -        """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] | 
