We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54aadea commit abf827aCopy full SHA for abf827a
nibabel/volumeutils.py
@@ -1543,9 +1543,9 @@ class BinOpener(Opener):
1543
__doc__ = Opener.__doc__
1544
1545
def __init__(self, *args, **kwargs):
1546
- warnings.warn("Please use %s class instead of %s" % (
1547
- Opener.__class__.__name__,
1548
- self.__class__.__name__),
+ warnings.warn(
+ "Please use %s class instead of %s" % (Opener.__class__.__name__,
+ self.__class__.__name__),
1549
DeprecationWarning, stacklevel=2)
1550
return super(BinOpener, self).__init__(*args, **kwargs)
1551
0 commit comments