pass kwargs down into gen_straight()
This commit is contained in:
parent
39d9b88fa4
commit
4c69e773fd
1 changed files with 1 additions and 1 deletions
|
|
@ -405,7 +405,7 @@ class BasicTool(Tool, metaclass=ABCMeta):
|
||||||
ipat, iport_theirs, _iport_ours = in_transition
|
ipat, iport_theirs, _iport_ours = in_transition
|
||||||
pat.plug(ipat, {port_names[1]: iport_theirs})
|
pat.plug(ipat, {port_names[1]: iport_theirs})
|
||||||
if not numpy.isclose(straight_length, 0):
|
if not numpy.isclose(straight_length, 0):
|
||||||
straight_pat = gen_straight(straight_length)
|
straight_pat = gen_straight(straight_length, **kwargs)
|
||||||
if append:
|
if append:
|
||||||
pat.plug(straight_pat, {port_names[1]: sport_in}, append=True)
|
pat.plug(straight_pat, {port_names[1]: sport_in}, append=True)
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue