nixos-render-docs: drop frozendict

with mypy type checking and Mapping types this is a lot less useful than
anticipated. let's drop it for simplicity and having fewer dependencies.

frozendict 2.3.5 also broke the mypy checks.
This commit is contained in:
pennae 2023-02-19 20:51:39 +01:00 committed by pennae
parent 27a45b0e10
commit 00bffb84da
4 changed files with 11 additions and 16 deletions

View file

@ -1,5 +1,4 @@
from collections.abc import Mapping, MutableMapping, Sequence
from frozendict import frozendict # type: ignore[attr-defined]
from typing import Any, cast, Optional, NamedTuple
import markdown_it