From b76cf1ab172d076e01a6450d1253cf8c3041f7ab Mon Sep 17 00:00:00 2001 From: Oscar Gustafsson <oscar.gustafsson@liu.se> Date: Thu, 11 Jul 2024 09:29:29 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) --- b_asic/signal_flow_graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/b_asic/signal_flow_graph.py b/b_asic/signal_flow_graph.py index 4ab95b48..cbd491d7 100644 --- a/b_asic/signal_flow_graph.py +++ b/b_asic/signal_flow_graph.py @@ -305,7 +305,7 @@ class SFG(AbstractOperation): if len(output_sources) != (output_operation_count + output_signal_count): raise ValueError( - "At least one output signal is not connected!, Tips: Check for output ports that are connected to the same signal" + "At least one output operation is not connected!, Tips: Check for output ports that are connected to the same signal" ) def __str__(self) -> str: -- GitLab