summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-06-12 21:33:59 (GMT)
committerBrad King <brad.king@kitware.com>2023-06-12 21:34:25 (GMT)
commit5de805bea21af6c20f35afcbb925b1856d643bbe (patch)
tree456b2de701b1be1cd9e34a46f481a1c2410f04b7
parent66f7d9e6e03f4b38bbd5e456fa32397d809f5bfb (diff)
downloadCMake-5de805bea21af6c20f35afcbb925b1856d643bbe.zip
CMake-5de805bea21af6c20f35afcbb925b1856d643bbe.tar.gz
CMake-5de805bea21af6c20f35afcbb925b1856d643bbe.tar.bz2
Utilities/Sphinx: Fix flake8 E124 diagnostic in cmake.py
-rw-r--r--Utilities/Sphinx/cmake.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/Sphinx/cmake.py b/Utilities/Sphinx/cmake.py
index ffef5b3..faca2ed 100644
--- a/Utilities/Sphinx/cmake.py
+++ b/Utilities/Sphinx/cmake.py
@@ -514,7 +514,7 @@ class CMakeReferenceRole:
class Class(parent):
def __call__(self, name: str, rawtext: str, text: str,
*args, **kwargs
- ) -> Tuple[List[Node], List[system_message]]:
+ ) -> Tuple[List[Node], List[system_message]]:
text = CMakeReferenceRole._escape_angle_brackets(text)
return super().__call__(name, rawtext, text, *args, **kwargs)
return Class