fix(aurora): remove empty lines in changes_factory and fix timestamp formatting
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:50:52 -04:00
parent 709042f057
commit edbc950741
Signed by: cswimr
GPG key ID: 3813315477F26F82
2 changed files with 13 additions and 8 deletions

View file

@ -22,6 +22,12 @@ class Change(AuroraBaseModel):
def unix_timestamp(self) -> int:
return int(self.timestamp.timestamp())
@property
def unix_end_timestamp(self) -> Optional[int]:
if self.end_timestamp:
return int(self.end_timestamp.timestamp())
return None
def __str__(self):
return f"{self.type} {self.user_id} {self.reason}"

View file

@ -261,19 +261,18 @@ async def changes_factory(interaction: Interaction, moderation: Moderation) -> E
user: PartialUser = memory_dict[str(change.user_id)]
timestamp = f"<t:{change.unix_timestamp}> | <t:{change.unix_timestamp}:R>"
end_timestamp = f"<t:{change.end_timestamp}> | <t:{change.end_timestamp}:R>" if change.end_timestamp else None
end_timestamp = f"<t:{change.unix_end_timestamp}> | <t:{change.unix_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('Duration:')} {humanize_timedelta(timedelta=change.duration)}" if change.duration else "",
f"{bold('End Timestamp:')} {end_timestamp}" if end_timestamp else "",
f"{bold('Reason:')} {change.reason}" if change.reason else None,
f"{bold('Duration:')} {humanize_timedelta(timedelta=change.duration)}" if change.duration else None,
f"{bold('End Timestamp:')} {end_timestamp}" if end_timestamp else None,
f"{bold('Timestamp')} {timestamp}",
]
try:
change_str.remove("")
except ValueError:
pass
for string in change_str:
if string is None:
change_str.remove(string)
embed.add_field(
name=change.type.title(),