mirror of
https://github.com/myned/modufur.git
synced 2024-12-25 14:47:29 +00:00
Changed internal methods to use leading underscores
This commit is contained in:
parent
0658a62823
commit
51205c31bc
1 changed files with 2 additions and 2 deletions
|
@ -459,7 +459,7 @@ class MsG:
|
||||||
await ctx.send('**Already auto-qualitifying in {}.** Type `stop` to stop.'.format(ctx.channel.mention), delete_after=10)
|
await ctx.send('**Already auto-qualitifying in {}.** Type `stop` to stop.'.format(ctx.channel.mention), delete_after=10)
|
||||||
await ctx.message.add_reaction('\N{CROSS MARK}')
|
await ctx.message.add_reaction('\N{CROSS MARK}')
|
||||||
|
|
||||||
def get_favorites(self, ctx, args):
|
def _get_favorites(self, ctx, args):
|
||||||
if '-f' in args or '-favs' in args or '-faves' in args or '-favorites' in args:
|
if '-f' in args or '-favs' in args or '-faves' in args or '-favorites' in args:
|
||||||
if self.favorites.get(ctx.author.id, {}).get('tags', set()):
|
if self.favorites.get(ctx.author.id, {}).get('tags', set()):
|
||||||
args = ['~{}'.format(tag) for tag in self.favorites[ctx.author.id]['tags']]
|
args = ['~{}'.format(tag) for tag in self.favorites[ctx.author.id]['tags']]
|
||||||
|
@ -468,7 +468,7 @@ class MsG:
|
||||||
|
|
||||||
return args
|
return args
|
||||||
|
|
||||||
async def return_pool(self, ctx, *, booru='e621', query=[]):
|
async def _get_pool(self, ctx, *, booru='e621', query=[]):
|
||||||
def on_message(msg):
|
def on_message(msg):
|
||||||
if msg.content.lower() == 'cancel' and msg.author is ctx.author and msg.channel is ctx.channel:
|
if msg.content.lower() == 'cancel' and msg.author is ctx.author and msg.channel is ctx.channel:
|
||||||
raise exc.Abort
|
raise exc.Abort
|
||||||
|
|
Loading…
Reference in a new issue