Passed
Pull Request — master (#110)
by
unknown
01:39
created

hyperactive.base   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
1
"""Base classes for optimizers and experiments."""
2
# copyright: hyperactive developers, MIT License (see LICENSE file)
3
4
from hyperactive.base._experiment import BaseExperiment
5
from hyperactive.base._optimizer import BaseOptimizer
6
7
__all__ = ["BaseExperiment", "BaseOptimizer"]
8