diff options
-rw-r--r-- | sphinx/util/inspect.py | 2 | ||||
-rw-r--r-- | tests/test_autodoc.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 53229d252..570ea9df6 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -17,7 +17,7 @@ import typing import warnings from functools import partial, partialmethod from inspect import ( # NOQA - Parameter, isclass, ismethod, ismethoddescriptor, isroutine, unwrap + Parameter, isclass, ismethod, ismethoddescriptor, unwrap ) from io import StringIO from typing import Any, Callable, Mapping, List, Tuple diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 11c3503be..dd474536d 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -1422,7 +1422,7 @@ def test_wrappedfunction(app): ' :module: target.wrappedfunction', '', ' This function is slow.', - ' ', + '', ] |