File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -537,9 +537,9 @@ def add_port_accept_connection_type(
537537 connection_data = connection_data [key ]
538538
539539 if accept_ptype not in connection_data :
540- connection_data [accept_ptype ] = set ( [accept_pname ])
540+ connection_data [accept_ptype ] = [accept_pname ]
541541 else :
542- connection_data [accept_ptype ].add (accept_pname )
542+ connection_data [accept_ptype ].append (accept_pname )
543543
544544 def port_accept_connection_types (self , node_type , port_type , port_name ):
545545 """
@@ -582,9 +582,9 @@ def add_port_reject_connection_type(
582582 connection_data = connection_data [key ]
583583
584584 if reject_ptype not in connection_data :
585- connection_data [reject_ptype ] = set ( [reject_pname ])
585+ connection_data [reject_ptype ] = [reject_pname ]
586586 else :
587- connection_data [reject_ptype ].add (reject_pname )
587+ connection_data [reject_ptype ].append (reject_pname )
588588
589589 def port_reject_connection_types (self , node_type , port_type , port_name ):
590590 """
You can’t perform that action at this time.
0 commit comments