File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change 1010# All configuration values have a default; values that are commented out
1111# serve to show the default.
1212
13- import sys
14- import os
15- import inspect
1613import importlib
14+ import inspect
1715import logging
16+ import os
17+ import sys
18+
1819import jinja2
19- from sphinx .ext .autosummary import _import_by_name
2020from numpydoc .docscrape import NumpyDocString
21-
21+ from sphinx . ext . autosummary import _import_by_name
2222
2323logger = logging .getLogger (__name__ )
2424
433433# Add custom Documenter to handle attributes/methods of an AccessorProperty
434434# eg pandas.Series.str and pandas.Series.dt (see GH9322)
435435
436- import sphinx
437- from sphinx .util import rpartition
438- from sphinx .ext .autodoc import Documenter , MethodDocumenter , AttributeDocumenter
439- from sphinx .ext .autosummary import Autosummary
436+ import sphinx # noqa: E402 isort:skip
437+ from sphinx .util import rpartition # noqa: E402 isort:skip
438+ from sphinx .ext .autodoc import ( # noqa: E402 isort:skip
439+ AttributeDocumenter ,
440+ Documenter ,
441+ MethodDocumenter ,
442+ )
443+ from sphinx .ext .autosummary import Autosummary # noqa: E402 isort:skip
440444
441445
442446class AccessorDocumenter (MethodDocumenter ):
You can’t perform that action at this time.
0 commit comments