fix(aurora): more ruff fixes
All checks were successful
Actions / Build Documentation (MkDocs) (push) Successful in 32s
Actions / Lint Code (Ruff & Pylint) (push) Successful in 36s

This commit is contained in:
cswimr 2025-03-28 10:22:08 -05:00
parent 4407a99b8e
commit 2505dd0980
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
4 changed files with 14 additions and 24 deletions

View file

@ -40,7 +40,7 @@ class Aurora(commands.Cog):
This cog stores all of its data in an SQLite database.""" This cog stores all of its data in an SQLite database."""
__author__ = ["cswimr"] __author__ = ["cswimr"]
__version__ = "2.1.4" __version__ = "2.1.5"
__documentation__ = "https://seacogs.coastalcommits.com/aurora/" __documentation__ = "https://seacogs.coastalcommits.com/aurora/"
async def red_delete_data_for_user(self, *, requester, user_id: int): async def red_delete_data_for_user(self, *, requester, user_id: int):
@ -872,7 +872,7 @@ class Aurora(commands.Cog):
silent = not await config.guild(interaction.guild).dm_users() silent = not await config.guild(interaction.guild).dm_users()
if silent is False: if silent is False:
try: try:
embed = embed = await message_factory( embed = await message_factory(
await self.bot.get_embed_color(interaction.channel), await self.bot.get_embed_color(interaction.channel),
guild=interaction.guild, guild=interaction.guild,
moderator=interaction.user, moderator=interaction.user,

View file

@ -14,12 +14,12 @@ from .utils import convert_timedelta_to_str, generate_dict, get_next_case_number
def connect() -> sqlite3.Connection: def connect() -> sqlite3.Connection:
"""Connects to the SQLite database, and returns a connection object.""" """Connects to the SQLite database, and returns a connection object."""
try: try:
connection = sqlite3.connect(database=data_manager.cog_data_path(raw_name="Aurora") / "aurora.db") return sqlite3.connect(database=data_manager.cog_data_path(raw_name="Aurora") / "aurora.db")
return connection
except sqlite3.OperationalError as e: except sqlite3.OperationalError as e:
logger.error("Unable to access the SQLite database!\nError:\n%s", e.msg) logger.error("Unable to access the SQLite database!\nError:\n%s", e.msg)
raise ConnectionRefusedError(f"Unable to access the SQLite Database!\n{e.msg}") from e msg = f"Unable to access the SQLite Database!\n{e.msg}"
raise ConnectionRefusedError(msg) from e
async def create_guild_table(guild: Guild): async def create_guild_table(guild: Guild):

View file

@ -451,7 +451,7 @@ async def addrole_embed(ctx: commands.Context) -> Embed:
"id": evalulated_role.id, "id": evalulated_role.id,
"mention": evalulated_role.mention, "mention": evalulated_role.mention,
"position": evalulated_role.position, "position": evalulated_role.position,
} },
) )
else: else:
roles.append( roles.append(
@ -459,7 +459,7 @@ async def addrole_embed(ctx: commands.Context) -> Embed:
"id": role, "id": role,
"mention": error(f"`{role}` (Not Found)"), "mention": error(f"`{role}` (Not Found)"),
"position": 0, "position": 0,
} },
) )
if roles: if roles:
@ -506,7 +506,7 @@ async def immune_embed(ctx: commands.Context) -> Embed:
"id": evalulated_role.id, "id": evalulated_role.id,
"mention": evalulated_role.mention, "mention": evalulated_role.mention,
"position": evalulated_role.position, "position": evalulated_role.position,
} },
) )
else: else:
roles.append( roles.append(
@ -514,7 +514,7 @@ async def immune_embed(ctx: commands.Context) -> Embed:
"id": role, "id": role,
"mention": error(f"`{role}` (Not Found)"), "mention": error(f"`{role}` (Not Found)"),
"position": 0, "position": 0,
} },
) )
if roles: if roles:

View file

@ -104,7 +104,7 @@ async def get_next_case_number(guild_id: str, cursor=None) -> int:
def generate_dict(result) -> dict: def generate_dict(result) -> dict:
case = { return {
"moderation_id": result[0], "moderation_id": result[0],
"timestamp": result[1], "timestamp": result[1],
"moderation_type": result[2], "moderation_type": result[2],
@ -122,7 +122,6 @@ def generate_dict(result) -> dict:
"changes": json.loads(result[14]), "changes": json.loads(result[14]),
"metadata": json.loads(result[15]), "metadata": json.loads(result[15]),
} }
return case
async def fetch_user_dict(client: commands.Bot, user_id: str) -> dict: async def fetch_user_dict(client: commands.Bot, user_id: str) -> dict:
@ -175,11 +174,9 @@ async def fetch_role_dict(guild: Guild, role_id: int) -> dict:
"""This function returns a dictionary containing either role information or a standard deleted role template.""" """This function returns a dictionary containing either role information or a standard deleted role template."""
role = guild.get_role(int(role_id)) role = guild.get_role(int(role_id))
if not role: if not role:
role_dict = {"id": role_id, "name": "Deleted Role"} pass
role_dict = {"id": role.id, "name": role.name} return {"id": role.id, "name": role.name}
return role_dict
async def log(interaction: Interaction, moderation_id: int, resolved: bool = False) -> None: async def log(interaction: Interaction, moderation_id: int, resolved: bool = False) -> None:
@ -245,16 +242,9 @@ def create_pagesize_options() -> list[SelectOption]:
label="Default", label="Default",
value="default", value="default",
description="Reset the pagesize to the default value.", description="Reset the pagesize to the default value.",
) ),
) )
for i in range(1, 21): options.extend(SelectOption(label=str(i), value=str(i), description=f"Set the pagesize to {i}") for i in range(1, 21))
options.append(
SelectOption(
label=str(i),
value=str(i),
description=f"Set the pagesize to {i}.",
)
)
return options return options