add retool()
This commit is contained in:
parent
2271681c57
commit
587305497f
@ -290,6 +290,18 @@ class RenderPather(PortList):
|
||||
self.pattern.refs[other.name].append(ref)
|
||||
return self
|
||||
|
||||
def retool(
|
||||
self,
|
||||
tool: Tool,
|
||||
keys: str | Sequence[str | None] | None = None,
|
||||
) -> Self:
|
||||
if keys is None or isinstance(keys, str):
|
||||
self.tools[keys] = tool
|
||||
else:
|
||||
for key in keys:
|
||||
self.tools[key] = tool
|
||||
return self
|
||||
|
||||
def path(
|
||||
self,
|
||||
portspec: str,
|
||||
|
Loading…
Reference in New Issue
Block a user