pep8 much?

This commit is contained in:
neersighted 2012-02-29 00:29:53 -08:00
parent e77e45d8b8
commit ed50bc746c
33 changed files with 92 additions and 99 deletions

View file

@ -102,7 +102,7 @@ larts = ["swaps <who>'s shampoo with glue",
"hands <who> a poison ivy joint"]
@hook.command
def lart(inp, me = None, nick = None, input=None, notice=None):
def lart(inp, me=None, nick=None, input=None, notice=None):
".lart <user> -- Makes the bot LART <user>."
inp = inp.strip()
@ -116,4 +116,3 @@ def lart(inp, me = None, nick = None, input=None, notice=None):
msg = re.sub ('<who>', inp, random.choice(larts))
me(msg)