From 5dfb76eaad9d40000aab30a49be17f2a915d1ef2 Mon Sep 17 00:00:00 2001
From: Hugo Winbladh <hugwi268@student.liu.se>
Date: Fri, 30 Jun 2023 11:01:34 +0200
Subject: [PATCH] fix docstring formatting

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

diff --git a/b_asic/signal_flow_graph.py b/b_asic/signal_flow_graph.py
index 7139806d..c2e3b43e 100644
--- a/b_asic/signal_flow_graph.py
+++ b/b_asic/signal_flow_graph.py
@@ -737,11 +737,12 @@ class SFG(AbstractOperation):
         return sfg_copy()
 
     def simplify_delay_element_placement(self) -> "SFG":
-        """ Simplify an SFG by removing some redundant delay elements.
-            For example two signals originating from the same starting point, each
-            connected to a delay element will combine into a single delay element.
+        """
+        Simplify an SFG by removing some redundant delay elements.
+        For example two signals originating from the same starting point, each
+        connected to a delay element will combine into a single delay element.
 
-            Returns a copy of the simplified SFG.
+        Returns a copy of the simplified SFG.
         """
 
         sfg_copy = self()
-- 
GitLab