Add Boss list for all games and more boss types #17
@@ -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
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user