7 lines
118 B
Python
7 lines
118 B
Python
|
|
"""Ensemble strategy package."""
|
||
|
|
|
||
|
|
from .consensus_strategy import ConsensusStrategy
|
||
|
|
|
||
|
|
__all__ = ['ConsensusStrategy']
|
||
|
|
|