Skip to content

Commit

Permalink
Fix lying type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
frankharkins committed Feb 5, 2024
1 parent 9635f12 commit a5a07e7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ecosystem/cli/website.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@


from pathlib import Path
from typing import Any
import json
import toml

Expand All @@ -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.
Expand Down

0 comments on commit a5a07e7

Please sign in to comment.