WIP: Refactor Aurora (3.0.0) #29

Draft
cswimr wants to merge 347 commits from aurora-pydantic into main
Showing only changes of commit 9be187e4aa - Show all commits

View file

@ -264,8 +264,8 @@ async def changes_factory(interaction: Interaction, moderation: Moderation) -> E
end_timestamp = f"<t:{change.end_timestamp}> | <t:{change.end_timestamp}:R>" if change.end_timestamp else None
change_str = [
f"{bold("User:")} {inline(user.name)} ({user.id})",
f"{bold("Reason:")} {change.reason}" if change.reason else "",
f"{bold('User:')} {inline(user.name)} ({user.id})",
f"{bold('Reason:')} {change.reason}" if change.reason else "",
f"{bold('Duration:')} {humanize_timedelta(timedelta=change.duration)}" if change.duration else "",
f"{bold('End Timestamp:')} {end_timestamp}" if end_timestamp else "",
f"{bold("Timestamp:")} {timestamp}",