From 8aafbb395cb526ead03be1807fb960380644f8bc Mon Sep 17 00:00:00 2001 From: Oksana Zaharko Date: Fri, 20 Mar 2020 21:02:44 +0100 Subject: [PATCH] corrected h5.py line 67 --- pyzebra/h5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyzebra/h5.py b/pyzebra/h5.py index be51205..9067898 100644 --- a/pyzebra/h5.py +++ b/pyzebra/h5.py @@ -64,6 +64,6 @@ def open_h5meta(filepath): h5meta_content = read_h5meta(filepath) for file in h5meta_content["filelist"]: data[file] = read_detector_data(file) - angles[file] = read_angle_data(file) + angles[file] = read_detector_data(file) return data, angles