summaryrefslogtreecommitdiff
path: root/src/silx/utils/proxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/silx/utils/proxy.py')
-rw-r--r--src/silx/utils/proxy.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/silx/utils/proxy.py b/src/silx/utils/proxy.py
index 7801b4b..f0da3c9 100644
--- a/src/silx/utils/proxy.py
+++ b/src/silx/utils/proxy.py
@@ -180,8 +180,7 @@ def _docstring(dest, origin):
try:
origin = getattr(origin, dest.__name__)
except AttributeError:
- raise ValueError(
- "origin class has no %s method" % dest.__name__)
+ raise ValueError("origin class has no %s method" % dest.__name__)
dest.__doc__ = origin.__doc__
return dest