diff --git a/masque/builder/builder.py b/masque/builder/builder.py index fed839a..4494751 100644 --- a/masque/builder/builder.py +++ b/masque/builder/builder.py @@ -292,14 +292,14 @@ class Builder(PortList): other = self.library[other.name] self.pattern.plug( - other=other, - map_in=map_in, - map_out=map_out, - mirrored=mirrored, - inherit_name=inherit_name, - set_rotation=set_rotation, - append=append, - ok_connections=ok_connections, + other = other, + map_in = map_in, + map_out = map_out, + mirrored = mirrored, + inherit_name = inherit_name, + set_rotation = set_rotation, + append = append, + ok_connections = ok_connections, ) return self @@ -365,14 +365,14 @@ class Builder(PortList): other = self.library[other.name] self.pattern.place( - other=other, - offset=offset, - rotation=rotation, - pivot=pivot, - mirrored=mirrored, - port_map=port_map, - skip_port_check=skip_port_check, - append=append, + other = other, + offset = offset, + rotation = rotation, + pivot = pivot, + mirrored = mirrored, + port_map = port_map, + skip_port_check = skip_port_check, + append = append, ) return self diff --git a/masque/pattern.py b/masque/pattern.py index 01ddf6a..fd29d5f 100644 --- a/masque/pattern.py +++ b/masque/pattern.py @@ -1311,9 +1311,9 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable): translation, rotation, pivot = self.find_transform( other, map_in, - mirrored=mirrored, - set_rotation=set_rotation, - ok_connections=ok_connections, + mirrored = mirrored, + set_rotation = set_rotation, + ok_connections = ok_connections, ) # get rid of plugged ports @@ -1326,13 +1326,13 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable): self.place( other, - offset=translation, - rotation=rotation, - pivot=pivot, - mirrored=mirrored, - port_map=map_out, - skip_port_check=True, - append=append, + offset = translation, + rotation = rotation, + pivot = pivot, + mirrored = mirrored, + port_map = map_out, + skip_port_check = True, + append = append, ) return self diff --git a/masque/ports.py b/masque/ports.py index 17431c2..b8137c0 100644 --- a/masque/ports.py +++ b/masque/ports.py @@ -472,12 +472,12 @@ class PortList(metaclass=ABCMeta): s_ports = self[map_in.keys()] o_ports = other[map_in.values()] return self.find_port_transform( - s_ports=s_ports, - o_ports=o_ports, - map_in=map_in, - mirrored=mirrored, - set_rotation=set_rotation, - ok_connections=ok_connections, + s_ports = s_ports, + o_ports = o_ports, + map_in = map_in, + mirrored = mirrored, + set_rotation = set_rotation, + ok_connections = ok_connections, ) @staticmethod