From 3b333e5686d7e9a8dfae6987921a926f2b192818 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 19 Dec 2023 16:37:31 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- lib/iris/fileformats/dot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/iris/fileformats/dot.py b/lib/iris/fileformats/dot.py index 332921a0f8..ff0e26bf84 100644 --- a/lib/iris/fileformats/dot.py +++ b/lib/iris/fileformats/dot.py @@ -341,12 +341,12 @@ def _dot_node(indent, id, name, attributes): ---------- id : The ID of the node. - name : + name : The visual name of the node. attributes: An iterable of (name, value) attribute pairs. - """ # noqa: D411 + """ # noqa: D411 attributes = r"\n".join("%s: %s" % item for item in attributes) template = """%(indent)s"%(id)s" [ %(indent)s label = "%(name)s|%(attributes)s"