diff --git a/ecosystem/cli/website.py b/ecosystem/cli/website.py index 52f9cbb20d..8b90d47086 100644 --- a/ecosystem/cli/website.py +++ b/ecosystem/cli/website.py @@ -3,6 +3,7 @@ from pathlib import Path +from typing import Any import json import toml @@ -24,7 +25,7 @@ def build_website(resources: str, output: str) -> None: def _load_from_file( resources_dir: Path, ) -> tuple[ - list[Repository], dict[str, str | dict], dict[str, str], dict[str, Template] + list[Repository], dict[str, Any], dict[str, str], dict[str, Template] ]: """ Loads website data from file.