Skip to content

Commit 636c850

Browse files
committed
Pylint fix
1 parent 180db81 commit 636c850

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/probnum/linops/_arithmetic.py

+2
Original file line numberDiff line numberDiff line change
@@ -374,10 +374,12 @@ def _sub_anylinop_zero(op: LinearOperator, z: Zero) -> Zero:
374374

375375

376376
def _mul_scalar_zero(scalar: ScalarLike, z: Zero) -> Zero:
377+
# pylint: disable=unused-argument
377378
return z
378379

379380

380381
def _mul_zero_scalar(z: Zero, scalar: ScalarLike) -> Zero:
382+
# pylint: disable=unused-argument
381383
return z
382384

383385

0 commit comments

Comments
 (0)