From d91353ba960bdaf835d95c2d2f1ecf7ffc1c0cfa Mon Sep 17 00:00:00 2001
From: Philipp Schmidt <philipp.schmidt@xfel.eu>
Date: Fri, 20 Jan 2023 17:58:00 +0100
Subject: [PATCH] Ignore attributes when copying HDF objects from one file to
 another

---
 src/cal_tools/h5_copy_except.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/cal_tools/h5_copy_except.py b/src/cal_tools/h5_copy_except.py
index d983ec128..d70bd5b18 100644
--- a/src/cal_tools/h5_copy_except.py
+++ b/src/cal_tools/h5_copy_except.py
@@ -25,7 +25,7 @@ def copy_except_tree(src_group: h5py.Group, dest_group: h5py.Group, except_tree)
         if except_tree_part is True:  # Totally excluded
             pass
         elif except_tree_part is None:  # Not excluded
-            src_group.copy(name, dest_group, name)
+            src_group.copy(name, dest_group, name, without_attrs=True)
         else:  # Partially excluded
             src_subgroup = src_group[name]
             assert isinstance(src_subgroup, h5py.Group)
-- 
GitLab