diff --git a/corrlib/cli.py b/corrlib/cli.py index ca2acb2..576358b 100644 --- a/corrlib/cli.py +++ b/corrlib/cli.py @@ -91,11 +91,12 @@ def find( ), ensemble: str = typer.Argument(), corr: str = typer.Argument(), + code: str = typer.Argument(), ) -> None: """ Find a record in the backlog at hand. Through specifying it's ensemble and the measured correlator. """ - results = find_record(path, ensemble, corr) + results = find_record(path, ensemble, corr, code) print(results)