diff options
Diffstat (limited to 'scripts/results.py')
-rwxr-xr-x | scripts/results.py | 27 |
1 files changed, 3 insertions, 24 deletions
diff --git a/scripts/results.py b/scripts/results.py index 1bf504e..c3c2379 100755 --- a/scripts/results.py +++ b/scripts/results.py @@ -10,30 +10,9 @@ Manage the analysis results in YAML format. """ -import manifest - - -def get_results(filename="results.yaml"): - """ - Find the results file and return the Manifest instance of it. - - Parameters - ---------- - filename : str, optional - Filename of the results file (default: ``results.yaml``) - - Returns - ------- - results : `~Manifest` - Manifest instance (i.e., results) of the found results file. - """ - return manifest.get_manifest(filename) - - -def main(description="Manage the analysis results (YAML format)", - default_file="results.yaml"): - manifest.main(description=description, default_file=default_file) +from context import acispy +from acispy import results if __name__ == "__main__": - main() + results.main() |