Passed
Pull Request — master (#101)
by Simon
01:28
created

hyperactive.experiment   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0
wmc 0
1
"""Base classes for optimizers and experiments."""
2
3
from ._experiment import BaseExperiment
4
from ._utility import add_callback, add_catch
5
6
__all__ = ["BaseExperiment", "add_callback", "add_catch"]
7