fix(aurora): fixed a TypeError
This commit is contained in:
parent
edbc950741
commit
7c86d862cf
1 changed files with 4 additions and 4 deletions
|
@ -265,13 +265,13 @@ async def changes_factory(interaction: Interaction, moderation: Moderation) -> E
|
||||||
|
|
||||||
change_str = [
|
change_str = [
|
||||||
f"{bold('User:')} {inline(user.name)} ({user.id})",
|
f"{bold('User:')} {inline(user.name)} ({user.id})",
|
||||||
f"{bold('Reason:')} {change.reason}" if change.reason else None,
|
f"{bold('Reason:')} {change.reason}" if change.reason else "",
|
||||||
f"{bold('Duration:')} {humanize_timedelta(timedelta=change.duration)}" if change.duration else None,
|
f"{bold('Duration:')} {humanize_timedelta(timedelta=change.duration)}" if change.duration else "",
|
||||||
f"{bold('End Timestamp:')} {end_timestamp}" if end_timestamp else None,
|
f"{bold('End Timestamp:')} {end_timestamp}" if end_timestamp else "",
|
||||||
f"{bold('Timestamp')} {timestamp}",
|
f"{bold('Timestamp')} {timestamp}",
|
||||||
]
|
]
|
||||||
for string in change_str:
|
for string in change_str:
|
||||||
if string is None:
|
if string == "":
|
||||||
change_str.remove(string)
|
change_str.remove(string)
|
||||||
|
|
||||||
embed.add_field(
|
embed.add_field(
|
||||||
|
|
Loading…
Reference in a new issue