From fe49e1e25bf890f06563d3913bbd99617411ae29 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 16 Nov 2025 22:57:20 -0800 Subject: [PATCH] [Pather] clarify a variable name --- masque/builder/pather.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/masque/builder/pather.py b/masque/builder/pather.py index e9cd125..4542b95 100644 --- a/masque/builder/pather.py +++ b/masque/builder/pather.py @@ -296,11 +296,11 @@ class Pather(Builder, PatherMixin): tool = self.tools.get(portspec, self.tools[None]) in_ptype = self.pattern[portspec].ptype tree = tool.path(ccw, length, in_ptype=in_ptype, port_names=tool_port_names, **kwargs) - abstract = self.library << tree # TODO this seems like a name, not an abstract + tname = self.library << tree if plug_into is not None: output = {plug_into: tool_port_names[1]} else: output = {} - self.plug(abstract, {portspec: tool_port_names[0], **output}) + self.plug(tname, {portspec: tool_port_names[0], **output}) return self