diff options
| author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-01-07 18:31:15 +0000 |
|---|---|---|
| committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2023-01-07 18:31:15 +0000 |
| commit | a13cf2c24dd16b37670ee1d359f511cbdfa4402d (patch) | |
| tree | 8ad1b7f385797dbee5834aca74178fbb56dbc6bf /sphinx/search | |
| parent | 8384aa51a7f07ab653ef74ada77c22782d6ebc1d (diff) | |
| download | sphinx-git-a13cf2c24dd16b37670ee1d359f511cbdfa4402d.tar.gz | |
Adopt ``profile = "black"`` for ``isort``
This allows using Ruff's import sorting fixers
Diffstat (limited to 'sphinx/search')
| -rw-r--r-- | sphinx/search/__init__.py | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index f56c55379..04f33a60c 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -10,8 +10,22 @@ import re import warnings from importlib import import_module from os import path -from typing import (IO, Any, Callable, Dict, Generator, Iterable, Iterator, List, Optional, - Sequence, Set, Tuple, Type, Union) +from typing import ( + IO, + Any, + Callable, + Dict, + Generator, + Iterable, + Iterator, + List, + Optional, + Sequence, + Set, + Tuple, + Type, + Union, +) from docutils import nodes from docutils.nodes import Element, Node |
