Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ci:
autoupdate_schedule: quarterly
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
Expand All @@ -32,16 +32,16 @@ repos:
- id: autoflake
args: ['--in-place', '--remove-unused-variable']

- repo: https://github.com/psf/black
rev: '24.4.2'
- repo: https://github.com/psf/black-pre-commit-mirror
rev: '25.9.0'
hooks:
- id: black
- repo: https://github.com/Pierre-Sassoulas/black-disable-checker
rev: 'v1.1.3'
hooks:
- id: black-disable-checker
- repo: https://github.com/pycqa/isort
rev: '5.13.2'
rev: '6.1.0'
hooks:
- id: isort
- repo: local
Expand Down
3 changes: 1 addition & 2 deletions giveaways/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,11 @@ async def convert(self, ctx, argument):
raise BadArgument(
"This may be the wrong leveling cog. Ensure you are using Fixators."
)

if vals["levelupreq"]:
cog = ctx.bot.get_cog("LevelUp")
if not cog:
raise BadArgument("LevelUp cog not loaded.")


if vals["tatsu_level"] or vals["tatsu_rep"]:
token = await ctx.bot.get_shared_api_tokens("tatsumaki")
Expand Down
2 changes: 1 addition & 1 deletion unbelievaboat/roulette.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
35: "black",
}

EMOJIS = {"black": "\u2B1B", "red": "\U0001F7E5", "green": "\U0001F7E9"}
EMOJIS = {"black": "\u2b1b", "red": "\U0001f7e5", "green": "\U0001f7e9"}

COLUMNS = [
[1, 4, 7, 10, 13, 16, 19, 22, 25, 28, 31, 34],
Expand Down
Loading