PEP8, lots of tweaks/fixes
This commit is contained in:
parent
641b770dc3
commit
508fec8ae8
29 changed files with 165 additions and 111 deletions
|
@ -33,7 +33,7 @@ def insult(inp, nick=None, me=None, conn=None):
|
|||
target = nick
|
||||
else:
|
||||
target = inp
|
||||
|
||||
|
||||
out = 'insults %s... "%s"' % (target, random.choice(insults))
|
||||
me(out)
|
||||
|
||||
|
@ -51,6 +51,6 @@ def flirt(inp, nick=None, me=None, conn=None):
|
|||
target = 'itself'
|
||||
else:
|
||||
target = inp
|
||||
|
||||
|
||||
out = 'insults %s... "%s"' % (target, random.choice(flirts))
|
||||
me(out)
|
||||
|
|
Reference in a new issue