Fix typo
This commit is contained in:
parent
834126e0d6
commit
974702246d
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ class Signal:
|
||||||
return self.operator_signal(other, "+")
|
return self.operator_signal(other, "+")
|
||||||
return self.operator_arraylike(other, "+")
|
return self.operator_arraylike(other, "+")
|
||||||
|
|
||||||
def __rad__(self, other: ArrayLike | "Signal") -> "Signal":
|
def __radd__(self, other: ArrayLike | "Signal") -> "Signal":
|
||||||
return self + other # symetric
|
return self + other # symetric
|
||||||
|
|
||||||
def __sub__(self, other: ArrayLike | "Signal") -> "Signal":
|
def __sub__(self, other: ArrayLike | "Signal") -> "Signal":
|
||||||
|
|
Loading…
Reference in a new issue