diff options
author | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-07-18 22:49:56 +0100 |
---|---|---|
committer | Adam Turner <9087854+aa-turner@users.noreply.github.com> | 2022-07-18 22:49:56 +0100 |
commit | 94024e6efaa23869a6141dba05118c158d3d3f8f (patch) | |
tree | 1bfccc5447ca099627c4c31f536d7082b7b9eb6a /sphinx/builders/xml.py | |
parent | a4d41aa889388bf8ee2815d4819235b5ca978a8d (diff) | |
parent | eb0a6c574fd18d5c5d903e5d07cba8cafc376ee0 (diff) | |
download | sphinx-git-94024e6efaa23869a6141dba05118c158d3d3f8f.tar.gz |
Merge branch '5.x'
# Conflicts:
# sphinx/ext/autodoc/__init__.py
# sphinx/writers/html5.py
Diffstat (limited to 'sphinx/builders/xml.py')
-rw-r--r-- | sphinx/builders/xml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/builders/xml.py b/sphinx/builders/xml.py index 0f45b912c..e86c7684c 100644 --- a/sphinx/builders/xml.py +++ b/sphinx/builders/xml.py @@ -1,7 +1,7 @@ """Docutils-native XML and pseudo-XML builders.""" from os import path -from typing import Any, Dict, Iterator, Set, Type, Union +from typing import Any, Dict, Iterator, Optional, Set, Type, Union from docutils import nodes from docutils.io import StringOutput @@ -53,7 +53,7 @@ class XMLBuilder(Builder): # source doesn't exist anymore pass - def get_target_uri(self, docname: str, typ: str = None) -> str: + def get_target_uri(self, docname: str, typ: Optional[str] = None) -> str: return docname def prepare_writing(self, docnames: Set[str]) -> None: |