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

Add fix to minor error that caused pipeline fail

parent ebad7458
No related branches found
No related tags found
1 merge request!9Resolve #1 "Port Interface", #8 "Port Coupling"
Checking pipeline status
......@@ -164,7 +164,7 @@ class OutputPort(Port):
return len(self._signals)
def connect_port(self, port: InputPort) -> Signal:
return = Signal(self, port) # Signal is added to self._signals in signal constructor
return Signal(self, port) # Signal is added to self._signals in signal constructor
def connect_signal(self, signal: Signal) -> None:
assert not self.is_connected_to_signal(signal), \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment