Add Boss list for all games and more boss types #17

Merged
TheFurya merged 4 commits from feature/add-boss-data into develop 2026-02-11 21:59:53 +01:00
2 changed files with 6 additions and 3 deletions
Showing only changes of commit b55a82117e - Show all commits

View File

@@ -5,11 +5,12 @@ Revises: e5f6a7b8c9d1, e5f6a7b9c0d1
Create Date: 2026-02-11 21:49:29.942841
"""
from collections.abc import Sequence
# revision identifiers, used by Alembic.
revision: str = 'e5f70a1ca323'
down_revision: str | Sequence[str] | None = ('e5f6a7b8c9d1', 'e5f6a7b9c0d1')
revision: str = "e5f70a1ca323"
down_revision: str | Sequence[str] | None = ("e5f6a7b8c9d1", "e5f6a7b9c0d1")
branch_labels: str | Sequence[str] | None = None
depends_on: str | Sequence[str] | None = None

View File

@@ -3,7 +3,9 @@ import random
from functools import lru_cache
from pathlib import Path
DICTIONARY_PATH = Path(__file__).resolve().parents[1] / "seeds" / "data" / "name_dictionary.json"
DICTIONARY_PATH = (
Path(__file__).resolve().parents[1] / "seeds" / "data" / "name_dictionary.json"
)
@lru_cache(maxsize=1)