fix format in backend
All checks were successful
CI / backend-lint (pull_request) Successful in 8s
CI / frontend-lint (pull_request) Successful in 30s

This commit is contained in:
2026-02-11 21:58:46 +01:00
parent 40bce99c0b
commit b55a82117e
2 changed files with 6 additions and 3 deletions

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)