Skip to content

Commit

Permalink
Backporting to Python 3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
aknrdureegaesr committed Feb 20, 2024
1 parent 074f59d commit b46b121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nikola/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import sys
import threading
from collections import defaultdict, OrderedDict
from collections.abc import Callable, Iterable
from collections.abc import Callable
from html import unescape as html_unescape
from importlib import reload as _reload
from unicodedata import normalize as unicodenormalize
Expand All @@ -60,7 +60,7 @@
from doit import tools
from doit.cmdparse import CmdParse
from nikola.packages.pygments_better_html import BetterHtmlFormatter
from typing import Any, Dict, List, Mapping, Match, Optional, Tuple, Union
from typing import Any, Dict, Iterable, List, Mapping, Match, Optional, Tuple, Union
from unidecode import unidecode

# Renames
Expand Down

0 comments on commit b46b121

Please sign in to comment.