Skip to content

Commit 934f935

Browse files
committed
bug: avoid passing directly explicit to _ColumnLinearOperator
1 parent 30a9390 commit 934f935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylops/linearoperator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1328,7 +1328,7 @@ def __init__(
13281328
) -> None:
13291329
if not isinstance(Op, LinearOperator):
13301330
raise TypeError("Op must be a LinearOperator")
1331-
super(_ColumnLinearOperator, self).__init__(Op, explicit=Op.explicit)
1331+
super(_ColumnLinearOperator, self).__init__(Op)
13321332
self.Op = Op
13331333
self.cols = cols
13341334
self._shape = (Op.shape[0], len(cols))

0 commit comments

Comments
 (0)