Skip to content

Commit

Permalink
🐛 修复类型错误
Browse files Browse the repository at this point in the history
  • Loading branch information
shoucandanghehe committed Dec 20, 2024
1 parent 9c28c3d commit 2ff6dc1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nonebot_plugin_tetris_stats/games/tetrio/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from .api.leaderboards import by
from .api.schemas.base import P
from .api.schemas.leaderboards import Parameter
from .api.schemas.leaderboards.by import Entry
from .constant import GAME_TYPE

command.add(
Expand Down Expand Up @@ -84,6 +85,7 @@ async def _(
join_at=None,
)
for i in league.data.entries
if isinstance(i, Entry)
],
),
)
Expand Down

0 comments on commit 2ff6dc1

Please sign in to comment.