From 6194798b2fd83b0d96ebfc20fee48c63b77181f5 Mon Sep 17 00:00:00 2001 From: Edward Linscott Date: Fri, 11 Oct 2024 15:44:57 +0200 Subject: [PATCH] Added extra messages to UIatoms class for debugging GH action --- src/koopmans/processes/ui/_atoms.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/koopmans/processes/ui/_atoms.py b/src/koopmans/processes/ui/_atoms.py index 210b703f7..bc0b98d8b 100644 --- a/src/koopmans/processes/ui/_atoms.py +++ b/src/koopmans/processes/ui/_atoms.py @@ -96,6 +96,7 @@ def __eq__(self, other): return False if (a['positions'] != b['positions']).any(): utils.warn('Atoms have different positions') + utils.warn(f'{a["positions"]}\n{b["positions"]}') return False if not (self.cell == other.cell).all(): utils.warn('Atoms have different cells')