misc(aurora): removed ``` from all of the files that had it, replaced with redbot.core.utils.chat_formatting.box()
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 54s
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 54s
This commit is contained in:
parent
038c9413ce
commit
539052eb00
5 changed files with 17 additions and 13 deletions
|
@ -4,6 +4,7 @@ from typing import Dict
|
|||
|
||||
from discord import ButtonStyle, Interaction, Message, ui
|
||||
from redbot.core import commands
|
||||
from redbot.core.utils.chat_formatting import box
|
||||
|
||||
from ..utilities.database import connect, create_guild_table, mysql_log
|
||||
|
||||
|
@ -100,7 +101,7 @@ class ImportAuroraView(ui.View):
|
|||
await interaction.edit_original_response(content="Import complete.")
|
||||
if failed_cases:
|
||||
await interaction.edit_original_response(
|
||||
content=f"Import complete.\n*Failed to import the following cases:*\n```{failed_cases}```"
|
||||
content=f"Import complete.\n*Failed to import the following cases:*\n" + box(failed_cases)
|
||||
)
|
||||
|
||||
@ui.button(label="No", style=ButtonStyle.danger)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue