fix(aurora): fixed another syntax error in changes_factory
Some checks failed
Actions / Build Documentation (MkDocs) (pull_request) Successful in 28s
Actions / Lint Code (Ruff & Pylint) (pull_request) Failing after 41s

This commit is contained in:
Seaswimmer 2024-08-19 17:42:25 -04:00
parent 9be187e4aa
commit 891b36ccaa
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -268,7 +268,7 @@ async def changes_factory(interaction: Interaction, moderation: Moderation) -> E
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}",
f"{bold('Timestamp')} {timestamp}",
]
change_str.remove("")