Skip to content

Commit c1e8c31

Browse files
authored
Add NiMAREBase features to the Corrector base class (#807)
1 parent 476e262 commit c1e8c31

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

nimare/correct.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
"""Multiple comparisons correction methods."""
22
import inspect
33
import logging
4-
from abc import ABCMeta, abstractproperty
4+
from abc import abstractproperty
55

66
import numpy as np
77
from pymare.stats import bonferroni, fdr
88

9+
from nimare.base import NiMAREBase
910
from nimare.results import MetaResult
1011
from nimare.transforms import p_to_z
1112

1213
LGR = logging.getLogger(__name__)
1314

1415

15-
class Corrector(metaclass=ABCMeta):
16+
class Corrector(NiMAREBase):
1617
"""Base class for multiple comparison correction methods in :mod:`~nimare.correct`.
1718
1819
.. versionadded:: 0.0.3

0 commit comments

Comments
 (0)