From 769762227d593a5586a7a2bca5fc696157583453 Mon Sep 17 00:00:00 2001 From: Ian Galpin <ian.galpin@geant.org> Date: Wed, 16 Nov 2022 13:51:27 +0000 Subject: [PATCH] Convert to Python 3.9+ typing --- docs/source/conf.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 812d976f..19c14091 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,7 +15,6 @@ # sys.path.insert(0, os.path.abspath('.')) from importlib import import_module -from typing import List from docutils.parsers.rst import Directive from docutils import nodes @@ -82,7 +81,7 @@ templates_path = ['_templates'] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. -exclude_patterns: List[str] = [] +exclude_patterns: list[str] = [] # -- Options for HTML output ------------------------------------------------- -- GitLab