From c2d3ea3e4722fcf4a45eb814aeda6a01ead27ef1 Mon Sep 17 00:00:00 2001
From: angloth <angus.lothian@hotmail.com>
Date: Thu, 9 Apr 2020 14:28:57 +0200
Subject: [PATCH] Add minor readability change to sfg.py

---
 b_asic/signal_flow_graph.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/b_asic/signal_flow_graph.py b/b_asic/signal_flow_graph.py
index fd23fda2..74df86d0 100644
--- a/b_asic/signal_flow_graph.py
+++ b/b_asic/signal_flow_graph.py
@@ -210,8 +210,8 @@ class SFG(AbstractOperation):
 
     def deep_copy(self) -> "SFG":
         """Returns a deep copy of self."""
-        copy = SFG(inputs=self._input_operations,
-                   outputs=self._output_operations, id_number_offset=self._id_number_offset, name=super().name)
+        copy = SFG(inputs=self._input_operations, outputs=self._output_operations,
+                   id_number_offset=self._id_number_offset, name=super().name)
 
         return copy
 
-- 
GitLab