Skip to content

Commit 972f1cc

Browse files
committed
Fix 3.9 issue
1 parent 5dfb83b commit 972f1cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/sanescansrv/htmlgen.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,13 @@
2222
__author__ = "CoolCat467"
2323
__license__ = "GNU General Public License Version 3"
2424

25-
from typing import TYPE_CHECKING, TypeAlias, Union
25+
from typing import TYPE_CHECKING, Union
2626

2727
if TYPE_CHECKING: # pragma: nocover
2828
from collections.abc import Generator, Iterable, Mapping
2929

30+
from typing_extensions import TypeAlias
31+
3032

3133
def indent(level: int, text: str) -> str:
3234
"""Indent text by level of spaces."""

0 commit comments

Comments
 (0)