Skip to content

Commit

Permalink
Added extra messages to UIatoms class for debugging GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
elinscott committed Oct 11, 2024
1 parent 9553fcf commit 6194798
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/koopmans/processes/ui/_atoms.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 6194798

Please sign in to comment.