add some whitespace

This commit is contained in:
jan 2025-11-18 23:01:42 -08:00
parent f831ccd873
commit 146e6808ee
3 changed files with 32 additions and 32 deletions

View File

@ -292,14 +292,14 @@ class Builder(PortList):
other = self.library[other.name] other = self.library[other.name]
self.pattern.plug( self.pattern.plug(
other=other, other = other,
map_in=map_in, map_in = map_in,
map_out=map_out, map_out = map_out,
mirrored=mirrored, mirrored = mirrored,
inherit_name=inherit_name, inherit_name = inherit_name,
set_rotation=set_rotation, set_rotation = set_rotation,
append=append, append = append,
ok_connections=ok_connections, ok_connections = ok_connections,
) )
return self return self
@ -365,14 +365,14 @@ class Builder(PortList):
other = self.library[other.name] other = self.library[other.name]
self.pattern.place( self.pattern.place(
other=other, other = other,
offset=offset, offset = offset,
rotation=rotation, rotation = rotation,
pivot=pivot, pivot = pivot,
mirrored=mirrored, mirrored = mirrored,
port_map=port_map, port_map = port_map,
skip_port_check=skip_port_check, skip_port_check = skip_port_check,
append=append, append = append,
) )
return self return self

View File

@ -1311,9 +1311,9 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable):
translation, rotation, pivot = self.find_transform( translation, rotation, pivot = self.find_transform(
other, other,
map_in, map_in,
mirrored=mirrored, mirrored = mirrored,
set_rotation=set_rotation, set_rotation = set_rotation,
ok_connections=ok_connections, ok_connections = ok_connections,
) )
# get rid of plugged ports # get rid of plugged ports
@ -1326,13 +1326,13 @@ class Pattern(PortList, AnnotatableImpl, Mirrorable):
self.place( self.place(
other, other,
offset=translation, offset = translation,
rotation=rotation, rotation = rotation,
pivot=pivot, pivot = pivot,
mirrored=mirrored, mirrored = mirrored,
port_map=map_out, port_map = map_out,
skip_port_check=True, skip_port_check = True,
append=append, append = append,
) )
return self return self

View File

@ -472,12 +472,12 @@ class PortList(metaclass=ABCMeta):
s_ports = self[map_in.keys()] s_ports = self[map_in.keys()]
o_ports = other[map_in.values()] o_ports = other[map_in.values()]
return self.find_port_transform( return self.find_port_transform(
s_ports=s_ports, s_ports = s_ports,
o_ports=o_ports, o_ports = o_ports,
map_in=map_in, map_in = map_in,
mirrored=mirrored, mirrored = mirrored,
set_rotation=set_rotation, set_rotation = set_rotation,
ok_connections=ok_connections, ok_connections = ok_connections,
) )
@staticmethod @staticmethod