summaryrefslogtreecommitdiff
path: root/tests/test_ext_autodoc_autoclass.py
diff options
context:
space:
mode:
authorAdam Turner <9087854+aa-turner@users.noreply.github.com>2022-12-30 20:14:18 +0000
committerAdam Turner <9087854+aa-turner@users.noreply.github.com>2023-01-01 20:48:37 +0000
commitf4c8a0a68e0013808d169357c9f77ebdf19d0f4e (patch)
treef952fa0106f7b93db5b5a21b801f12566f2ebaee /tests/test_ext_autodoc_autoclass.py
parent0b1efd7756e05b238c28c62e3946a222cacbd229 (diff)
downloadsphinx-git-f4c8a0a68e0013808d169357c9f77ebdf19d0f4e.tar.gz
Insert ``from __future__ import annotations``
Diffstat (limited to 'tests/test_ext_autodoc_autoclass.py')
-rw-r--r--tests/test_ext_autodoc_autoclass.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_ext_autodoc_autoclass.py b/tests/test_ext_autodoc_autoclass.py
index 8d85d7cd3..412f3c955 100644
--- a/tests/test_ext_autodoc_autoclass.py
+++ b/tests/test_ext_autodoc_autoclass.py
@@ -4,6 +4,8 @@ This tests mainly the Documenters; the auto directives are tested in a test
source file translated by test_build.
"""
+from __future__ import annotations
+
from typing import List, Union
import pytest