Skip to content

Commit 21b3930

Browse files
authored
Merge pull request #656 from mrava87/bug-columnop
bug: avoid passing directly explicit to _ColumnLinearOperator
2 parents 30a9390 + 934f935 commit 21b3930

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)