From 5d1fb85d91790670c36cac10419980e9845b1753 Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Mon, 23 Mar 2020 11:22:58 +0100 Subject: [PATCH] Fix read_detector_data usage in app.py --- pyzebra/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyzebra/app.py b/pyzebra/app.py index 6105569..d7f2508 100644 --- a/pyzebra/app.py +++ b/pyzebra/app.py @@ -67,7 +67,7 @@ def update_image(): def filelist_callback(_attr, _old, new): global curent_h5_data, current_index - data = pyzebra.read_detector_data(new) + data, _, _, _ = pyzebra.read_detector_data(new) curent_h5_data = data current_index = 0 update_image()