add some whitespace

This commit is contained in:
jan 2025-11-18 23:01:42 -08:00 committed by Jan Petykiewicz
commit bc8c0ee580
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