This commit is contained in:
jan 2023-04-06 17:03:31 -07:00
commit 4eee4d19e9
5 changed files with 7 additions and 8 deletions

View file

@ -8,7 +8,7 @@ from numpy.typing import ArrayLike
from ..pattern import Pattern
from ..ref import Ref
from ..library import MutableLibrary, Tree
from ..library import MutableLibrary
from ..error import PortError, BuildError
from ..ports import PortList, Port
from ..abstract import Abstract
@ -602,7 +602,7 @@ class Pather(Builder):
library: MutableLibrary,
base_name: str,
*,
ports: str | Mapping[str, Port] | None= None,
ports: str | Mapping[str, Port] | None = None,
tools: Tool | MutableMapping[str | None, Tool] | None = None,
) -> tuple['Pather', str]:
""" Name-and-make combination """