From d65d246ba85d3d52716f08ac2b59a47528201f38 Mon Sep 17 00:00:00 2001 From: Dhanya Thattil Date: Tue, 16 Jun 2026 12:04:39 +0200 Subject: [PATCH] back to before --- python/slsdet/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/slsdet/utils.py b/python/slsdet/utils.py index a853d8370..4039119d4 100755 --- a/python/slsdet/utils.py +++ b/python/slsdet/utils.py @@ -60,7 +60,7 @@ def to_geo(value): def all_equal(mylist): """If all elements are equal return true otherwise false""" - return all(x == list(mylist[0]) for x in mylist) + return all(x == mylist[0] for x in mylist) def element_if_equal(mylist):