Bump Ruff to 0.8.4

This commit is contained in:
Adam Turner 2025-01-02 21:09:38 +00:00
parent 2e5e39ef10
commit 1aaea6bee2
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ docs = [
"sphinxcontrib-websupport", "sphinxcontrib-websupport",
] ]
lint = [ lint = [
"ruff==0.8.3", "ruff==0.8.4",
"mypy==1.13.0", "mypy==1.13.0",
"sphinx-lint>=0.9", "sphinx-lint>=0.9",
"types-colorama==0.4.15.20240311", "types-colorama==0.4.15.20240311",

View File

@ -110,7 +110,7 @@ def get_full_module_name(node: Node) -> str:
def repr_domxml(node: Node, length: int = 80) -> str: def repr_domxml(node: Node, length: int = 80) -> str:
""" """
return DOM XML representation of the specified node like: Return DOM XML representation of the specified node like:
'<paragraph translatable="False"><inline classes="versionadded">Added in version...' '<paragraph translatable="False"><inline classes="versionadded">Added in version...'
:param nodes.Node node: target node :param nodes.Node node: target node