diff --git a/nxy/plugins/useless.py b/nxy/plugins/useless.py index e746104..063d580 100644 --- a/nxy/plugins/useless.py +++ b/nxy/plugins/useless.py @@ -69,7 +69,7 @@ class Useless(Plugin): @command def kiss(self, mask: IrcString, channel: IrcString, args: DocOptDict): """Kisses a user - + %%kiss """ return fmt('(づ。◕‿‿◕。)づ{color}{red}。。・゜゜・。。・゜❤{reset} {nick} ' @@ -80,7 +80,7 @@ class Useless(Plugin): def hug(self, mask: IrcString, channel: IrcString, args: DocOptDict) -> str: """Hugs a user - + %%hug """ return fmt('{color}{red}♥♡❤♡♥{reset} {nick} {color}{red}♥♡❤♡♥', @@ -89,7 +89,7 @@ class Useless(Plugin): @command def hack(self, mask: IrcString, channel: IrcString, args: DocOptDict): """Hacks (a user) - + %%hack [] """ nick = args.get('') or '' @@ -100,7 +100,7 @@ class Useless(Plugin): @command def gay(self, mask: IrcString, channel: IrcString, args: DocOptDict): """Make someone gay (alias to rainbow) - + %%gay ... """ return self.rainbow(mask, channel, args) @@ -108,7 +108,7 @@ class Useless(Plugin): @command def rainbow(self, mask: IrcString, channel: IrcString, args: DocOptDict): """Colorize a word in rainbow colors - + %%rainbow ... """ last = 0 diff --git a/nxy/plugins/weather.py b/nxy/plugins/weather.py index 623c4ac..67c49a0 100644 --- a/nxy/plugins/weather.py +++ b/nxy/plugins/weather.py @@ -7,7 +7,6 @@ from irc3.plugins.command import command from irc3.utils import IrcString from . import Plugin -from ..utils import pp @irc3.plugin