From ea87418bf5a6c57c20943c4215ab783e3e5d8ea3 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Mon, 23 Jan 2023 23:01:14 -0800 Subject: [PATCH] clarify comment --- masque/builder/abstract.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/builder/abstract.py b/masque/builder/abstract.py index 8f4476d..e788d7d 100644 --- a/masque/builder/abstract.py +++ b/masque/builder/abstract.py @@ -46,7 +46,7 @@ class Abstract(PortList): """ pat = Pattern(ports=self.ports) pat.ref(self.name) - new = Builder(library=library, pattern=pat, tools=tools) # TODO should Ref have tools? + new = Builder(library=library, pattern=pat, tools=tools) # TODO should Abstract have tools? return new # TODO do we want to store a Ref instead of just a name? then we can translate/rotate/mirror...