remove unnecessary output when results are empty #28

Merged
jkuhl merged 1 commit from feat/empty_find into develop 2026-04-09 15:57:31 +02:00

View file

@ -108,6 +108,8 @@ def find(
Find a record in the backlog at hand. Through specifying it's ensemble and the measured correlator.
"""
results = find_record(path, ensemble, corr, code)
if results.empty:
return
if arg == 'all':
print(results)
else: