fix(aurora): fixed another attributeerror
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Failing after 26s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 37s

This commit is contained in:
Seaswimmer 2024-07-06 11:53:39 -04:00
parent dd89bfaf34
commit 88cc7b4a3f
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -42,7 +42,7 @@ async def message_factory(
Returns:
embed: The message embed.
"""
if response is not None and moderation_type.type not in [
if response is not None and moderation_type.moderation_type not in [
"kick",
"ban",
"tempban",
@ -71,7 +71,7 @@ async def message_factory(
# embed_desc = "been"
embed = Embed(
title=str.title(moderation_type.type),
title=str.title(moderation_type.moderation_type),
description=f"You have {moderation_type.embed_desc} {moderation_type.verb}{embed_duration} in {guild_name}.",
color=color,
timestamp=datetime.now(),