From 6268af9afac493f3db2a70f7d5ec2049c362597e Mon Sep 17 00:00:00 2001 From: Justus Kuhlmann Date: Sat, 24 May 2025 11:39:46 +0000 Subject: [PATCH] add code as find arg --- corrlib/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)