Passed
Push — master ( b0177e...bb843a )
by
unknown
01:25
created

hyperactive.utils   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
"""Utility functionality."""
2
3
from hyperactive.utils.estimator_checks import check_estimator
4
5
__all__ = [
6
    "check_estimator",
7
]
8