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]
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

View File

@ -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

View File

@ -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