Skip to content
Snippets Groups Projects
Commit c2d3ea3e authored by angloth's avatar angloth
Browse files

Add minor readability change to sfg.py

parent 4ab6906c
No related branches found
No related tags found
5 merge requests!31Resolve "Specify internal input/output dependencies of an Operation",!25Resolve "System tests iteration 1",!24Resolve "System tests iteration 1",!23Resolve "Simulate SFG",!21Resolve "Print SFG"
Pipeline #12269 passed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment