diff options
| author | 2018-11-12 17:14:38 +0000 | |
|---|---|---|
| committer | 2018-11-12 17:14:38 +0000 | |
| commit | 20b1e8b800bd38114c91d29160bf0421b7a5d71b (patch) | |
| tree | d429c9456f798adcd06090dbbc7e6c31527983b6 | |
| parent | We don't need utils.irc.remove_colon anymore! (diff) | |
| signature | ||
Remove unneeded const
| -rw-r--r-- | src/utils/irc.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/irc.py b/src/utils/irc.py index b448a227..8160b524 100644 --- a/src/utils/irc.py +++ b/src/utils/irc.py @@ -7,7 +7,6 @@ STRICT_RFC1459_LOWER = ASCII_LOWER+r'|{}' RFC1459_UPPER = STRICT_RFC1459_UPPER+"^" RFC1459_LOWER = STRICT_RFC1459_LOWER+"~" -MULTI_REPLACE_ITERABLE = typing.Iterable[str] # case mapping lowercase/uppcase logic def _multi_replace(s: str, chars1: typing.Iterable[str], |
