Browse Source

Utilities/Sphinx: Fix flake8 E124 diagnostic in cmake.py

Brad King 2 năm trước cách đây
mục cha
commit
5de805bea2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      Utilities/Sphinx/cmake.py

+ 1 - 1
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