Skip to content

Commit

Permalink
Merge pull request #49 from Jylpah/dev
Browse files Browse the repository at this point in the history
version 1.2.21
  • Loading branch information
Jylpah authored May 24, 2024
2 parents 813ac8e + c92df7d commit bc9a68b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "blitz-models"
version = "1.2.20"
version = "1.2.21"
authors = [{ name = "Jylpah", email = "[email protected]" }]
description = "Pydantic models for Wargaming's World of Tanks Blitz game "
readme = "README.md"
Expand Down
16 changes: 8 additions & 8 deletions src/blitzmodels/wg_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,14 +216,14 @@ def indexes(self) -> dict[str, Idx]:
@classmethod
def backend_indexes(cls) -> list[list[tuple[str, IndexSortOrder]]]:
indexes: list[list[BackendIndex]] = list()
indexes.append(
[
("region", ASCENDING),
("account_id", ASCENDING),
("tank_id", ASCENDING),
("last_battle_time", DESCENDING),
]
)
# indexes.append(
# [
# ("region", ASCENDING),
# ("account_id", ASCENDING),
# ("tank_id", ASCENDING),
# ("last_battle_time", DESCENDING),
# ]
# )
indexes.append(
[
("region", ASCENDING),
Expand Down

0 comments on commit bc9a68b

Please sign in to comment.