Skip to content

Commit 0396eb4

Browse files
Remove Expr.__iadd__ stub
1 parent 908ac9c commit 0396eb4

2 files changed

Lines changed: 33 additions & 37 deletions

File tree

src/pyscipopt/scip.pyi

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -389,12 +389,6 @@ class Expr(ExprLike):
389389
def __add__(self, other: np.ndarray | MatrixExpr, /) -> MatrixExpr: ...
390390
def __radd__(self, other: float, /) -> Expr: ...
391391
@overload
392-
def __iadd__(self, other: float | Expr, /) -> Expr: ... # noqa: PYI034
393-
@overload
394-
def __iadd__(self, other: GenExpr, /) -> SumExpr: ...
395-
@overload
396-
def __iadd__(self, other: np.ndarray | MatrixExpr, /) -> MatrixExpr: ...
397-
@overload
398392
def __sub__(self, other: float | Expr, /) -> Expr: ...
399393
@overload
400394
def __sub__(self, other: GenExpr, /) -> SumExpr: ...

0 commit comments

Comments
 (0)