pep8 much?
This commit is contained in:
parent
e77e45d8b8
commit
ed50bc746c
33 changed files with 92 additions and 99 deletions
|
@ -1,10 +1,8 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from util import hook
|
||||
import random
|
||||
|
||||
@hook.command
|
||||
def flip(inp, flip_count=0, say = None):
|
||||
def flip(inp, flip_count=0, say=None):
|
||||
".flip <text> -- Flips <text> over."
|
||||
guy = unicode(random.choice(flips), 'utf8')
|
||||
inp = inp.lower()
|
||||
|
@ -23,7 +21,7 @@ flips = ["(屮ಠ︵ಠ)屮",
|
|||
"( ノ♉︵♉ )ノ",
|
||||
"(╯°□°)╯",
|
||||
"( ノ⊙︵⊙)ノ"]
|
||||
|
||||
|
||||
character_replacements = {
|
||||
'a': 'ɐ',
|
||||
'b': 'q',
|
||||
|
|
Reference in a new issue