From f1ca5a011184f1f24a9e3f3f51c5f00882e3b2b9 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sat, 7 Oct 2023 01:53:45 -0700 Subject: [PATCH] get rid of Pather.mk() --- masque/builder/pather.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/masque/builder/pather.py b/masque/builder/pather.py index f9e0186..ba1c642 100644 --- a/masque/builder/pather.py +++ b/masque/builder/pather.py @@ -132,19 +132,6 @@ class Pather(Builder): else: self.tools = dict(tools) - @classmethod - def mk( - cls, - library: ILibrary, - name: str, - *, - ports: str | Mapping[str, Port] | None = None, - tools: Tool | MutableMapping[str | None, Tool] | None = None, - ) -> tuple[str, 'Pather']: - """ Name-and-make combination """ # TODO document - pather = Pather(library, name=name, ports=ports, tools=tools) - return name, pather - @classmethod def from_builder( cls,