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 7410d89 commit 5c850daCopy full SHA for 5c850da
nibabel/gifti/parse_gifti_fast.py
@@ -333,11 +333,13 @@ def pending_data(self):
333
334
class Outputter(GiftiImageParser):
335
@np.deprecate_with_doc("Use GiftiImageParser instead.")
336
- def __init__(self, *args, **kwargs):
337
- super(Outputter, self).__init__(*args, **kwargs)
+ def __init__(self):
+ super(Outputter, self).__init__()
338
339
- def initialize(self, *args, **kwargs):
340
- self.__init__(*args, **kwargs)
+ def initialize(self):
+ """ Initialize outputter
341
+ """
342
+ self.__init__()
343
344
345
@np.deprecate_with_doc("Use GiftiImageParser.parse() instead.")
0 commit comments