fix(moderation): wrapped expired in a bool converter in the case command
Some checks failed
Pylint / Pylint (push) Failing after 1m12s
Some checks failed
Pylint / Pylint (push) Failing after 1m12s
This commit is contained in:
parent
db4826e232
commit
af011e047b
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ class Moderation(commands.Cog):
|
|||
embed.description = f"**Type:** {str.title(case['moderation_type'])}\n**Target:** {target_name} ({target.id})\n**Moderator:** {moderator_name} ({moderator.id})\n**Resolved:** {bool(case['resolved'])}\n**Timestamp:** <t:{case['timestamp']}> | <t:{case['timestamp']}:R>"
|
||||
if case['duration'] != 'NULL':
|
||||
td = timedelta(**{unit: int(val) for unit, val in zip(["hours", "minutes", "seconds"], case["duration"].split(":"))})
|
||||
embed.description = embed.description + f"\n**Duration:** {humanize.precisedelta(td)}\n**Expired:** {case['expired']}"
|
||||
embed.description = embed.description + f"\n**Duration:** {humanize.precisedelta(td)}\n**Expired:** {bool(case['expired'])}"
|
||||
embed.add_field(name='Reason', value=f"```{case['reason']}```", inline=False)
|
||||
if case['resolved'] == 1:
|
||||
embed.add_field(name='Resolve Reason', value=f"```{case['resolve_reason']}```", inline=False)
|
||||
|
|
Loading…
Reference in a new issue