回测基本一致
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
"""Pre-run interactive wizard (doc 05 §5).
|
||||
|
||||
Captures the handful of run settings that change run-to-run and writes them
|
||||
to ``wizard-answers.yaml`` for reproducibility. A run with no saved settings
|
||||
is not reproducible and shouldn't be promoted.
|
||||
"""
|
||||
from .wizard import (
|
||||
WizardAnswers,
|
||||
WizardQuestion,
|
||||
load_answers,
|
||||
run_wizard,
|
||||
save_answers,
|
||||
DEFAULT_QUESTIONS,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"WizardAnswers",
|
||||
"WizardQuestion",
|
||||
"run_wizard",
|
||||
"save_answers",
|
||||
"load_answers",
|
||||
"DEFAULT_QUESTIONS",
|
||||
]
|
||||
Reference in New Issue
Block a user