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
2 changes: 1 addition & 1 deletion .github/workflows/lint_python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v5
with:
ref: ${{ env.ref }}
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: "3.9"
- run: "python -m pip install git+https://github.com/pycqa/pyflakes@1911c20#egg=pyflakes git+https://github.com/pycqa/pycodestyle@d219c68#egg=pycodestyle git+https://github.com/pycqa/flake8@3.7.9#egg=flake8"
Expand Down
1 change: 0 additions & 1 deletion easterhunt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,3 @@ Use the achievement key from [p]easterhunt achievements.<br/>
## [p]ownerset resetall
Reset all Easter hunt data for all users and global config.<br/>
- Usage: `[p]ownerset resetall`

10 changes: 9 additions & 1 deletion nba/nba.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,15 @@ async def periodic_check(self):
(game_id, home_team, away_team, home_score, away_score, game_clock, period)
VALUES (?, ?, ?, ?, ?, ?, ?)
""",
(game_id, home_team_name, away_team_name, home_score, away_score, game_clock, period),
(
game_id,
home_team_name,
away_team_name,
home_score,
away_score,
game_clock,
period,
),
)
conn.commit()
self.finalized_games.add(game_id)
Expand Down
2 changes: 1 addition & 1 deletion pokemon/pokemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@
SOFTWARE.
"""

import asyncio
from datetime import datetime, timedelta, timezone
from random import randint

import aiohttp
import discord
import orjson
import asyncio
from discord import File
from red_commons.logging import getLogger
from redbot.core import app_commands, commands
Expand Down