diff options
| author | 2024-04-10 21:38:41 +0100 | |
|---|---|---|
| committer | 2024-04-10 21:38:41 +0100 | |
| commit | edee6fc55b41430c03f65169de04f38553179a72 (patch) | |
| tree | 065184153abb2f3377a2abc17ffa21990a0e1cda | |
| parent | Update lint workflow to use Python 3.12 (diff) | |
Run `ruff format` to fix format changes
We bumped the version of Ruff which introduced new formatting rules.
Hence, we need to reformat to meet these rules.
| -rw-r--r-- | arthur/exts/fun/devops_rules.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arthur/exts/fun/devops_rules.py b/arthur/exts/fun/devops_rules.py index bdc24fa..6aecadf 100644 --- a/arthur/exts/fun/devops_rules.py +++ b/arthur/exts/fun/devops_rules.py @@ -36,7 +36,7 @@ class Rules(Cog): output_rules = self.rules.keys() if not output_rules: - await ctx.send(f":x: Rule{'s'[:len(rules) ^ 1]} not found.") + await ctx.send(f":x: Rule{'s'[: len(rules) ^ 1]} not found.") return output = "\n".join( @@ -44,7 +44,7 @@ class Rules(Cog): ) await ctx.send( embed=discord.Embed( - title=f"Rule{'s'[:len(output_rules) ^ 1]}", + title=f"Rule{'s'[: len(output_rules) ^ 1]}", description=output, colour=discord.Colour.og_blurple(), url="https://www.notion.so/pythondiscord/Rules-149bc48f6f7947afadd8036f11d4e9a7", |