From 30bbaad249ff09a0759ca8fd5e4b8ea67e13fec0 Mon Sep 17 00:00:00 2001 From: Martin Lehmann Date: Thu, 18 Apr 2024 10:29:38 +0200 Subject: [PATCH] fix: Fix typo in dataflow diagram name (#87) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Ernst Würger --- capellambse_context_diagrams/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capellambse_context_diagrams/context.py b/capellambse_context_diagrams/context.py index b360482e..fd2e37b6 100644 --- a/capellambse_context_diagrams/context.py +++ b/capellambse_context_diagrams/context.py @@ -575,7 +575,7 @@ def uuid(self) -> str: # type: ignore @property def name(self) -> str: # type: ignore """Returns the name of the diagram.""" - return f"DatFlow view of {self.target.name}" + return f"DataFlow view of {self.target.name}" def _create_diagram(self, params: dict[str, t.Any]) -> cdiagram.Diagram: params["elkdata"] = dataflow_view.collector(self, params)