24 lines
528 B
Python
24 lines
528 B
Python
"""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",
|
|
]
|