diff --git a/src/ircutils.py b/src/ircutils.py index 26198b09a..dc7050ed8 100644 --- a/src/ircutils.py +++ b/src/ircutils.py @@ -234,7 +234,6 @@ def shrinkList(L, sep='', limit=425): class nick(str): """This class does case-insensitive comparisons of nicks.""" - __slots__ = ('lowered',) def __init__(self, s): self.lowered = toLower(s)