Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 29, 2024
1 parent a54da18 commit a42b1a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ark_nova_stats/api/gql/types/game_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ def card_recent_users_resolver(card: CardModel, info, **args) -> Sequence[UserMo


def card_most_played_by_resolver(card: CardModel, info, **args) -> list[dict]:
limit = min(10, int(args['limit']))
limit = min(10, int(args["limit"]))

return [
{"user": user, "card": card, "count": count}
Expand Down

0 comments on commit a42b1a4

Please sign in to comment.