We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dfb83b commit 972f1ccCopy full SHA for 972f1cc
src/sanescansrv/htmlgen.py
@@ -22,11 +22,13 @@
22
__author__ = "CoolCat467"
23
__license__ = "GNU General Public License Version 3"
24
25
-from typing import TYPE_CHECKING, TypeAlias, Union
+from typing import TYPE_CHECKING, Union
26
27
if TYPE_CHECKING: # pragma: nocover
28
from collections.abc import Generator, Iterable, Mapping
29
30
+ from typing_extensions import TypeAlias
31
+
32
33
def indent(level: int, text: str) -> str:
34
"""Indent text by level of spaces."""
0 commit comments