remove Builder.path() to avoid confusion with Pather.path()
This commit is contained in:
parent
6db4bb96db
commit
cda895a7d3
1 changed files with 5 additions and 4 deletions
|
|
@ -209,10 +209,11 @@ class Builder(PortList):
|
||||||
self.pattern.rect(*args, **kwargs)
|
self.pattern.rect(*args, **kwargs)
|
||||||
return self
|
return self
|
||||||
|
|
||||||
@wraps(Pattern.path)
|
# Note: We're a superclass of `Pather`, where path() means something different...
|
||||||
def path(self, *args, **kwargs) -> Self:
|
#@wraps(Pattern.path)
|
||||||
self.pattern.path(*args, **kwargs)
|
#def path(self, *args, **kwargs) -> Self:
|
||||||
return self
|
# self.pattern.path(*args, **kwargs)
|
||||||
|
# return self
|
||||||
|
|
||||||
def plug(
|
def plug(
|
||||||
self,
|
self,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue