Slight update to make the code a touch cleaner.

This commit is contained in:
Jeremy Fincher 2004-08-05 04:01:22 +00:00
parent 76a79b0d76
commit 250df8538c
1 changed files with 5 additions and 7 deletions

View File

@ -57,14 +57,12 @@ import supybot.privmsgs as privmsgs
import supybot.registry as registry
import supybot.callbacks as callbacks
def ircToLowerOrInt(x):
if isinstance(x, int):
return x
else:
return ircutils.toLower(x)
class IrcStringAndIntDict(utils.InsensitivePreservingDict):
key = staticmethod(ircToLowerOrInt)
def key(self, x):
if isinstance(x, int):
return x
else:
return ircutils.toLower(x)
class SeenDB(plugins.ChannelUserDB):
IdDict = IrcStringAndIntDict