mirror of
https://github.com/myned/modufur.git
synced 2024-11-01 13:02:38 +00:00
Change formatting
This commit is contained in:
parent
36075607e5
commit
a22d3c6a8f
1 changed files with 3 additions and 3 deletions
|
@ -1510,7 +1510,7 @@ class MsG:
|
||||||
for dic in alias_request:
|
for dic in alias_request:
|
||||||
aliases[tag].add(dic['name'])
|
aliases[tag].add(dic['name'])
|
||||||
|
|
||||||
message = await ctx.send(f'**Also add aliases?**\n{formatter.dict_tostring(aliases)}')
|
message = await ctx.send(f'**Also add aliases?**\n{formatter.dict_tostring(aliases, f=False)}')
|
||||||
await message.add_reaction('\N{THUMBS DOWN SIGN}')
|
await message.add_reaction('\N{THUMBS DOWN SIGN}')
|
||||||
await message.add_reaction('\N{HEAVY MINUS SIGN}')
|
await message.add_reaction('\N{HEAVY MINUS SIGN}')
|
||||||
await message.add_reaction('\N{THUMBS UP SIGN}')
|
await message.add_reaction('\N{THUMBS UP SIGN}')
|
||||||
|
@ -1519,7 +1519,7 @@ class MsG:
|
||||||
await self.bot.wait_for('reaction_add', check=on_reaction, timeout=7 * 60)
|
await self.bot.wait_for('reaction_add', check=on_reaction, timeout=7 * 60)
|
||||||
|
|
||||||
except exc.Remove:
|
except exc.Remove:
|
||||||
await message.edit(content=f'**Also add aliases?**\n{formatter.dict_tostring(aliases)}\nType the tag(s) to remove or `0` to abort:')
|
await message.edit(content=f'**Also add aliases?**\n{formatter.dict_tostring(aliases, f=False)}\nType the tag(s) to remove or `0` to abort:')
|
||||||
|
|
||||||
with suppress(err.Forbidden):
|
with suppress(err.Forbidden):
|
||||||
await message.remove_reaction('\N{HEAVY MINUS SIGN}', self.bot.user)
|
await message.remove_reaction('\N{HEAVY MINUS SIGN}', self.bot.user)
|
||||||
|
@ -1532,7 +1532,7 @@ class MsG:
|
||||||
if tag in v:
|
if tag in v:
|
||||||
v.remove(tag)
|
v.remove(tag)
|
||||||
|
|
||||||
await message.edit(content=f'**Also add aliases?**\n{formatter.dict_tostring(aliases)}\nConfirm or deny changes')
|
await message.edit(content=f'**Also add aliases?**\n{formatter.dict_tostring(aliases, f=False)}\nConfirm or deny changes')
|
||||||
await self.bot.wait_for('reaction_add', check=on_reaction, timeout=7 * 60)
|
await self.bot.wait_for('reaction_add', check=on_reaction, timeout=7 * 60)
|
||||||
|
|
||||||
self.aliases.update(aliases)
|
self.aliases.update(aliases)
|
||||||
|
|
Loading…
Reference in a new issue