autodoc: Rename autodoc_unqualified_typehints to autodoc_typehints_format (refs: #9931)

This commit is contained in:
Takeshi KOMIYA
2021-12-24 10:14:19 +09:00
parent 048fd80cb4
commit a87153c018
4 changed files with 19 additions and 13 deletions

View File

@@ -1143,8 +1143,8 @@ def test_autodoc_typehints_description_and_type_aliases(app):
@pytest.mark.sphinx('html', testroot='ext-autodoc',
confoverrides={'autodoc_unqualified_typehints': True})
def test_autodoc_unqualified_typehints(app):
confoverrides={'autodoc_typehints_format': "short"})
def test_autodoc_typehints_format_short(app):
if sys.version_info < (3, 7):
Any = 'Any'
else: