diff options
Diffstat (limited to 'sphinx/config.py')
-rw-r--r-- | sphinx/config.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sphinx/config.py b/sphinx/config.py index a6d070e3f..584d4c3c4 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -12,11 +12,9 @@ import re import traceback import types from collections import OrderedDict -from os import path, getenv -from typing import ( - Any, Callable, Dict, Generator, Iterator, List, NamedTuple, Set, Tuple, Union -) -from typing import TYPE_CHECKING +from os import getenv, path +from typing import (TYPE_CHECKING, Any, Callable, Dict, Generator, Iterator, List, NamedTuple, + Set, Tuple, Union) from sphinx.errors import ConfigError, ExtensionError from sphinx.locale import _, __ |