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

Add small fix to typing in signal

parent 0f03fe14
No related branches found
No related tags found
1 merge request!9Resolve #1 "Port Interface", #8 "Port Coupling"
......@@ -16,8 +16,8 @@ class Signal(AbstractGraphComponent):
_source: "OutputPort"
_destination: "InputPort"
def __init__(self, source: Optional["InputPort"] = None, \
destination: Optional["OutputPort"] = None, name: Name = ""):
def __init__(self, source: Optional["OutputPort"] = None, \
destination: Optional["InputPort"] = None, name: Name = ""):
super().__init__(name)
......
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