Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ift
NIFTy
Commits
0bd7ffe1
Commit
0bd7ffe1
authored
Jun 28, 2018
by
Lukas Platz
Browse files
fixed docstring position in LinearOperator
parent
b114c28f
Changes
1
Hide whitespace changes
Inline
Side-by-side
nifty5/operators/linear_operator.py
View file @
0bd7ffe1
...
...
@@ -197,8 +197,8 @@ class LinearOperator(NiftyMetaBase()):
raise
NotImplementedError
def
__call__
(
self
,
x
):
from
..models
import
LinearModel
,
Model
"""Same as :meth:`times`"""
from
..models
import
LinearModel
,
Model
if
isinstance
(
x
,
Model
):
return
LinearModel
(
x
,
self
)
return
self
.
apply
(
x
,
self
.
TIMES
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment