[RenderPather] whitespace

This commit is contained in:
jan 2025-11-19 00:07:07 -08:00
parent 8a0c985e36
commit 3a1a4b9126

View File

@ -265,13 +265,13 @@ class RenderPather(PortList, PatherMixin):
self.paths[new_name].append(RenderStep('P', None, port.copy(), port.copy(), None)) self.paths[new_name].append(RenderStep('P', None, port.copy(), port.copy(), None))
self.pattern.plug( self.pattern.plug(
other=other_tgt, other = other_tgt,
map_in=map_in, map_in = map_in,
map_out=map_out, map_out = map_out,
mirrored=mirrored, mirrored = mirrored,
inherit_name=inherit_name, thru = thru,
set_rotation=set_rotation, set_rotation = set_rotation,
append=append, append = append,
) )
return self return self
@ -337,14 +337,14 @@ class RenderPather(PortList, PatherMixin):
self.paths[new_name].append(RenderStep('P', None, port.copy(), port.copy(), None)) self.paths[new_name].append(RenderStep('P', None, port.copy(), port.copy(), None))
self.pattern.place( self.pattern.place(
other=other_tgt, other = other_tgt,
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